T

Macro T 

Source
macro_rules! T {
    [.] => { ... };
    [_.] => { ... };
    [+] => { ... };
    [-] => { ... };
    [*] => { ... };
    [/] => { ... };
    ['\\'] => { ... };
    [mod] => { ... };
    [^] => { ... };
    [=] => { ... };
    [,] => { ... };
    [!] => { ... };
    [&] => { ... };
    [:] => { ... };
    [;] => { ... };
    [<] => { ... };
    [>] => { ... };
    ['['] => { ... };
    [']'] => { ... };
    ['('] => { ... };
    [')'] => { ... };
    [option] => { ... };
    [comment] => { ... };
    [integer_literal] => { ... };
    [hex_integer_literal] => { ... };
    [octal_integer_literal] => { ... };
    [real_literal] => { ... };
    [string_literal] => { ... };
    [date_time_literal] => { ... };
    [ident] => { ... };
    [const] => { ... };
    [dim] => { ... };
    [redim] => { ... };
    [set] => { ... };
    [let] => { ... };
    [get] => { ... };
    [sub] => { ... };
    [function] => { ... };
    [byval] => { ... };
    [byref] => { ... };
    [call] => { ... };
    [class] => { ... };
    [property] => { ... };
    [public] => { ... };
    [private] => { ... };
    [preserve] => { ... };
    [default] => { ... };
    [as] => { ... };
    [new] => { ... };
    [return] => { ... };
    [for] => { ... };
    [each] => { ... };
    [in] => { ... };
    [to] => { ... };
    [step] => { ... };
    [next] => { ... };
    [while] => { ... };
    [wend] => { ... };
    [do] => { ... };
    [loop] => { ... };
    [until] => { ... };
    [with] => { ... };
    [select] => { ... };
    [case] => { ... };
    [if] => { ... };
    [then] => { ... };
    [else] => { ... };
    [elseif] => { ... };
    [end] => { ... };
    [exit] => { ... };
    [me] => { ... };
    [unused] => { ... };
    [empty] => { ... };
    [null] => { ... };
    [nothing] => { ... };
    [true] => { ... };
    [false] => { ... };
    [not] => { ... };
    [and] => { ... };
    [or] => { ... };
    [xor] => { ... };
    [eqv] => { ... };
    [imp] => { ... };
    [<>] => { ... };
    [>=] => { ... };
    [<=] => { ... };
    [is] => { ... };
    [error] => { ... };
    [resume] => { ... };
    [goto] => { ... };
    [on] => { ... };
    [stop] => { ... };
    [ws] => { ... };
    [nl] => { ... };
    [line_continuation] => { ... };
    [EOF] => { ... };
    [parse_error] => { ... };
}