Ignore:
Timestamp:
Oct 26, 2016, 5:41:11 PM (8 years ago)
Author:
Peter A. Buhr <pabuhr@…>
Branches:
ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
Children:
6d7c3df
Parents:
ec129c4
Message:

lex/parse new tuples

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Parser/parser.h

    rec129c4 r1b29996  
    115115     ATTR_TYPEGENname = 333,
    116116     INTEGERconstant = 334,
    117      FLOATINGconstant = 335,
    118      CHARACTERconstant = 336,
    119      STRINGliteral = 337,
    120      ZERO = 338,
    121      ONE = 339,
    122      ARROW = 340,
    123      ICR = 341,
    124      DECR = 342,
    125      LS = 343,
    126      RS = 344,
    127      LE = 345,
    128      GE = 346,
    129      EQ = 347,
    130      NE = 348,
    131      ANDAND = 349,
    132      OROR = 350,
    133      ELLIPSIS = 351,
    134      MULTassign = 352,
    135      DIVassign = 353,
    136      MODassign = 354,
    137      PLUSassign = 355,
    138      MINUSassign = 356,
    139      LSassign = 357,
    140      RSassign = 358,
    141      ANDassign = 359,
    142      ERassign = 360,
    143      ORassign = 361,
    144      ATassign = 362,
    145      THEN = 363
     117     CHARACTERconstant = 335,
     118     STRINGliteral = 336,
     119     REALDECIMALconstant = 337,
     120     REALFRACTIONconstant = 338,
     121     FLOATINGconstant = 339,
     122     ZERO = 340,
     123     ONE = 341,
     124     ARROW = 342,
     125     ICR = 343,
     126     DECR = 344,
     127     LS = 345,
     128     RS = 346,
     129     LE = 347,
     130     GE = 348,
     131     EQ = 349,
     132     NE = 350,
     133     ANDAND = 351,
     134     OROR = 352,
     135     ELLIPSIS = 353,
     136     MULTassign = 354,
     137     DIVassign = 355,
     138     MODassign = 356,
     139     PLUSassign = 357,
     140     MINUSassign = 358,
     141     LSassign = 359,
     142     RSassign = 360,
     143     ANDassign = 361,
     144     ERassign = 362,
     145     ORassign = 363,
     146     ATassign = 364,
     147     THEN = 365
    146148   };
    147149#endif
     
    224226#define ATTR_TYPEGENname 333
    225227#define INTEGERconstant 334
    226 #define FLOATINGconstant 335
    227 #define CHARACTERconstant 336
    228 #define STRINGliteral 337
    229 #define ZERO 338
    230 #define ONE 339
    231 #define ARROW 340
    232 #define ICR 341
    233 #define DECR 342
    234 #define LS 343
    235 #define RS 344
    236 #define LE 345
    237 #define GE 346
    238 #define EQ 347
    239 #define NE 348
    240 #define ANDAND 349
    241 #define OROR 350
    242 #define ELLIPSIS 351
    243 #define MULTassign 352
    244 #define DIVassign 353
    245 #define MODassign 354
    246 #define PLUSassign 355
    247 #define MINUSassign 356
    248 #define LSassign 357
    249 #define RSassign 358
    250 #define ANDassign 359
    251 #define ERassign 360
    252 #define ORassign 361
    253 #define ATassign 362
    254 #define THEN 363
     228#define CHARACTERconstant 335
     229#define STRINGliteral 336
     230#define REALDECIMALconstant 337
     231#define REALFRACTIONconstant 338
     232#define FLOATINGconstant 339
     233#define ZERO 340
     234#define ONE 341
     235#define ARROW 342
     236#define ICR 343
     237#define DECR 344
     238#define LS 345
     239#define RS 346
     240#define LE 347
     241#define GE 348
     242#define EQ 349
     243#define NE 350
     244#define ANDAND 351
     245#define OROR 352
     246#define ELLIPSIS 353
     247#define MULTassign 354
     248#define DIVassign 355
     249#define MODassign 356
     250#define PLUSassign 357
     251#define MINUSassign 358
     252#define LSassign 359
     253#define RSassign 360
     254#define ANDassign 361
     255#define ERassign 362
     256#define ORassign 363
     257#define ATassign 364
     258#define THEN 365
    255259
    256260
     
    262266
    263267/* Line 2068 of yacc.c  */
    264 #line 116 "parser.yy"
     268#line 120 "parser.yy"
    265269
    266270        Token tok;
     
    282286
    283287/* Line 2068 of yacc.c  */
    284 #line 285 "Parser/parser.h"
     288#line 289 "Parser/parser.h"
    285289} YYSTYPE;
    286290# define YYSTYPE_IS_TRIVIAL 1
Note: See TracChangeset for help on using the changeset viewer.