Changeset cde3891 for src/Parser/lex.ll


Ignore:
Timestamp:
Jan 23, 2019, 4:52:16 PM (6 years ago)
Author:
Thierry Delisle <tdelisle@…>
Branches:
ADT, arm-eh, ast-experimental, cleanup-dtors, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
Children:
a200795
Parents:
9b086ca (diff), 1d832f4 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge branch 'master' into cleanup-dtors

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Parser/lex.ll

    r9b086ca rcde3891  
    1010 * Created On       : Sat Sep 22 08:58:10 2001
    1111 * Last Modified By : Peter A. Buhr
    12  * Last Modified On : Wed Aug  8 17:23:17 2018
    13  * Update Count     : 685
     12 * Last Modified On : Thu Nov  1 20:57:35 2018
     13 * Update Count     : 687
    1414 */
    1515
     
    209209__attribute__   { KEYWORD_RETURN(ATTRIBUTE); }                  // GCC
    210210auto                    { KEYWORD_RETURN(AUTO); }
     211basetypeof              { KEYWORD_RETURN(BASETYPEOF); }                 // CFA
    211212_Bool                   { KEYWORD_RETURN(BOOL); }                               // C99
    212213break                   { KEYWORD_RETURN(BREAK); }
     
    410411">>="                   { NAMEDOP_RETURN(RSassign); }
    411412
    412 "~="                    { NAMEDOP_RETURN(Erange); }                             // CFA
    413413"@="                    { NAMEDOP_RETURN(ATassign); }                   // CFA
     414"~="                    { NAMEDOP_RETURN(ErangeUpEq); }                 // CFA
     415"-~"                    { NAMEDOP_RETURN(ErangeDown); }                 // CFA
     416"-~="                   { NAMEDOP_RETURN(ErangeDownEq); }               // CFA
    414417
    415418                                /* CFA, operator identifier */
Note: See TracChangeset for help on using the changeset viewer.