rustc_parse

Macro exp

Source
macro_rules! exp {
    (@tok, $tok:ident) => { ... };
    (@binop, $op:ident) => { ... };
    (@open, $delim:ident, $token_type:ident) => { ... };
    (@close, $delim:ident, $token_type:ident) => { ... };
    (@kw, $kw:ident, $token_type:ident) => { ... };
    (@sym, $kw:ident, $token_type:ident) => { ... };
    (Eq) => { ... };
    (Lt) => { ... };
    (Le) => { ... };
    (EqEq) => { ... };
    (Gt) => { ... };
    (AndAnd) => { ... };
    (OrOr) => { ... };
    (Not) => { ... };
    (Tilde) => { ... };
    (At) => { ... };
    (Dot) => { ... };
    (DotDot) => { ... };
    (DotDotDot) => { ... };
    (DotDotEq) => { ... };
    (Comma) => { ... };
    (Semi) => { ... };
    (Colon) => { ... };
    (PathSep) => { ... };
    (RArrow) => { ... };
    (FatArrow) => { ... };
    (Pound) => { ... };
    (Question) => { ... };
    (Eof) => { ... };
    (Plus) => { ... };
    (Minus) => { ... };
    (Star) => { ... };
    (And) => { ... };
    (Or) => { ... };
    (OpenParen) => { ... };
    (OpenBrace) => { ... };
    (OpenBracket) => { ... };
    (CloseParen) => { ... };
    (CloseBrace) => { ... };
    (CloseBracket) => { ... };
    (As) => { ... };
    (Async) => { ... };
    (Auto) => { ... };
    (Await) => { ... };
    (Become) => { ... };
    (Box) => { ... };
    (Break) => { ... };
    (Catch) => { ... };
    (Const) => { ... };
    (Continue) => { ... };
    (Crate) => { ... };
    (Default) => { ... };
    (Dyn) => { ... };
    (Else) => { ... };
    (Enum) => { ... };
    (Extern) => { ... };
    (Fn) => { ... };
    (For) => { ... };
    (Gen) => { ... };
    (If) => { ... };
    (Impl) => { ... };
    (In) => { ... };
    (Let) => { ... };
    (Loop) => { ... };
    (Macro) => { ... };
    (MacroRules) => { ... };
    (Match) => { ... };
    (Mod) => { ... };
    (Move) => { ... };
    (Mut) => { ... };
    (Pub) => { ... };
    (Raw) => { ... };
    (Ref) => { ... };
    (Return) => { ... };
    (Reuse) => { ... };
    (Safe) => { ... };
    (SelfUpper) => { ... };
    (Static) => { ... };
    (Struct) => { ... };
    (Trait) => { ... };
    (Try) => { ... };
    (Type) => { ... };
    (Underscore) => { ... };
    (Unsafe) => { ... };
    (Use) => { ... };
    (Where) => { ... };
    (While) => { ... };
    (Yield) => { ... };
    (AttSyntax) => { ... };
    (ClobberAbi) => { ... };
    (Inlateout) => { ... };
    (Inout) => { ... };
    (Is) => { ... };
    (Label) => { ... };
    (Lateout) => { ... };
    (MayUnwind) => { ... };
    (Nomem) => { ... };
    (Noreturn) => { ... };
    (Nostack) => { ... };
    (Options) => { ... };
    (Out) => { ... };
    (PreservesFlags) => { ... };
    (Pure) => { ... };
    (Readonly) => { ... };
    (Sym) => { ... };
}