This commit is contained in:
Akim Demaille
2009-06-29 13:37:19 +02:00
parent 31b850d2d4
commit 2f5b478e4b
2 changed files with 681 additions and 666 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -56,41 +56,42 @@
PERCENT_DEFAULT_PREC = 273, PERCENT_DEFAULT_PREC = 273,
PERCENT_DEFINE = 274, PERCENT_DEFINE = 274,
PERCENT_DEFINES = 275, PERCENT_DEFINES = 275,
PERCENT_EXPECT = 276, PERCENT_ERROR_VERBOSE = 276,
PERCENT_EXPECT_RR = 277, PERCENT_EXPECT = 277,
PERCENT_FLAG = 278, PERCENT_EXPECT_RR = 278,
PERCENT_FILE_PREFIX = 279, PERCENT_FLAG = 279,
PERCENT_GLR_PARSER = 280, PERCENT_FILE_PREFIX = 280,
PERCENT_INITIAL_ACTION = 281, PERCENT_GLR_PARSER = 281,
PERCENT_LANGUAGE = 282, PERCENT_INITIAL_ACTION = 282,
PERCENT_LEX_PARAM = 283, PERCENT_LANGUAGE = 283,
PERCENT_NAME_PREFIX = 284, PERCENT_LEX_PARAM = 284,
PERCENT_NO_DEFAULT_PREC = 285, PERCENT_NAME_PREFIX = 285,
PERCENT_NO_LINES = 286, PERCENT_NO_DEFAULT_PREC = 286,
PERCENT_NONDETERMINISTIC_PARSER = 287, PERCENT_NO_LINES = 287,
PERCENT_OUTPUT = 288, PERCENT_NONDETERMINISTIC_PARSER = 288,
PERCENT_PARSE_PARAM = 289, PERCENT_OUTPUT = 289,
PERCENT_REQUIRE = 290, PERCENT_PARSE_PARAM = 290,
PERCENT_SKELETON = 291, PERCENT_REQUIRE = 291,
PERCENT_START = 292, PERCENT_SKELETON = 292,
PERCENT_TOKEN_TABLE = 293, PERCENT_START = 293,
PERCENT_VERBOSE = 294, PERCENT_TOKEN_TABLE = 294,
PERCENT_YACC = 295, PERCENT_VERBOSE = 295,
BRACED_CODE = 296, PERCENT_YACC = 296,
CHAR = 297, BRACED_CODE = 297,
EPILOGUE = 298, CHAR = 298,
EQUAL = 299, EPILOGUE = 299,
ID = 300, EQUAL = 300,
ID_COLON = 301, ID = 301,
PERCENT_PERCENT = 302, ID_COLON = 302,
PIPE = 303, PERCENT_PERCENT = 303,
PROLOGUE = 304, PIPE = 304,
SEMICOLON = 305, PROLOGUE = 305,
TAG = 306, SEMICOLON = 306,
TAG_ANY = 307, TAG = 307,
TAG_NONE = 308, TAG_ANY = 308,
BRACKETED_ID = 309, TAG_NONE = 309,
PERCENT_UNION = 310 BRACKETED_ID = 310,
PERCENT_UNION = 311
}; };
#endif #endif
/* Tokens. */ /* Tokens. */
@@ -113,41 +114,42 @@
#define PERCENT_DEFAULT_PREC 273 #define PERCENT_DEFAULT_PREC 273
#define PERCENT_DEFINE 274 #define PERCENT_DEFINE 274
#define PERCENT_DEFINES 275 #define PERCENT_DEFINES 275
#define PERCENT_EXPECT 276 #define PERCENT_ERROR_VERBOSE 276
#define PERCENT_EXPECT_RR 277 #define PERCENT_EXPECT 277
#define PERCENT_FLAG 278 #define PERCENT_EXPECT_RR 278
#define PERCENT_FILE_PREFIX 279 #define PERCENT_FLAG 279
#define PERCENT_GLR_PARSER 280 #define PERCENT_FILE_PREFIX 280
#define PERCENT_INITIAL_ACTION 281 #define PERCENT_GLR_PARSER 281
#define PERCENT_LANGUAGE 282 #define PERCENT_INITIAL_ACTION 282
#define PERCENT_LEX_PARAM 283 #define PERCENT_LANGUAGE 283
#define PERCENT_NAME_PREFIX 284 #define PERCENT_LEX_PARAM 284
#define PERCENT_NO_DEFAULT_PREC 285 #define PERCENT_NAME_PREFIX 285
#define PERCENT_NO_LINES 286 #define PERCENT_NO_DEFAULT_PREC 286
#define PERCENT_NONDETERMINISTIC_PARSER 287 #define PERCENT_NO_LINES 287
#define PERCENT_OUTPUT 288 #define PERCENT_NONDETERMINISTIC_PARSER 288
#define PERCENT_PARSE_PARAM 289 #define PERCENT_OUTPUT 289
#define PERCENT_REQUIRE 290 #define PERCENT_PARSE_PARAM 290
#define PERCENT_SKELETON 291 #define PERCENT_REQUIRE 291
#define PERCENT_START 292 #define PERCENT_SKELETON 292
#define PERCENT_TOKEN_TABLE 293 #define PERCENT_START 293
#define PERCENT_VERBOSE 294 #define PERCENT_TOKEN_TABLE 294
#define PERCENT_YACC 295 #define PERCENT_VERBOSE 295
#define BRACED_CODE 296 #define PERCENT_YACC 296
#define CHAR 297 #define BRACED_CODE 297
#define EPILOGUE 298 #define CHAR 298
#define EQUAL 299 #define EPILOGUE 299
#define ID 300 #define EQUAL 300
#define ID_COLON 301 #define ID 301
#define PERCENT_PERCENT 302 #define ID_COLON 302
#define PIPE 303 #define PERCENT_PERCENT 303
#define PROLOGUE 304 #define PIPE 304
#define SEMICOLON 305 #define PROLOGUE 305
#define TAG 306 #define SEMICOLON 306
#define TAG_ANY 307 #define TAG 307
#define TAG_NONE 308 #define TAG_ANY 308
#define BRACKETED_ID 309 #define TAG_NONE 309
#define PERCENT_UNION 310 #define BRACKETED_ID 310
#define PERCENT_UNION 311
@@ -170,7 +172,7 @@ typedef union YYSTYPE
/* Line 1600 of yacc.c */ /* Line 1600 of yacc.c */
#line 174 "../bison/src/parse-gram.h" #line 176 "/Users/akim/src/kernel/bison/src/parse-gram.h"
} YYSTYPE; } YYSTYPE;
# define YYSTYPE_IS_TRIVIAL 1 # define YYSTYPE_IS_TRIVIAL 1
# define yystype YYSTYPE /* obsolescent; will be withdrawn */ # define yystype YYSTYPE /* obsolescent; will be withdrawn */