mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-03 18:31:55 -04:00
prebuild-bison
This commit is contained in:
parent
ea1b5a99f6
commit
720fb4ac63
@ -918,7 +918,7 @@ YY_MALLOC_DECL
|
||||
YY_DECL
|
||||
{
|
||||
register yy_state_type yy_current_state;
|
||||
register char *yy_cp = NULL, *yy_bp = NULL;
|
||||
register char *yy_cp, *yy_bp;
|
||||
register int yy_act;
|
||||
|
||||
#line 295 "dcLexer.lxx"
|
||||
@ -1920,6 +1920,11 @@ YY_BUFFER_STATE b;
|
||||
}
|
||||
|
||||
|
||||
#ifndef YY_ALWAYS_INTERACTIVE
|
||||
#ifndef YY_NEVER_INTERACTIVE
|
||||
extern int isatty YY_PROTO(( int ));
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#ifdef YY_USE_PROTOS
|
||||
void yy_init_buffer( YY_BUFFER_STATE b, FILE *file )
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -1,41 +1,114 @@
|
||||
#ifndef BISON_Y_TAB_H
|
||||
# define BISON_Y_TAB_H
|
||||
/* A Bison parser, made by GNU Bison 1.875. */
|
||||
|
||||
# define INTEGER 257
|
||||
# define REAL 258
|
||||
# define STRING 259
|
||||
# define HEX_STRING 260
|
||||
# define IDENTIFIER 261
|
||||
# define KW_DCLASS 262
|
||||
# define KW_INT8 263
|
||||
# define KW_INT16 264
|
||||
# define KW_INT32 265
|
||||
# define KW_INT64 266
|
||||
# define KW_UINT8 267
|
||||
# define KW_UINT16 268
|
||||
# define KW_UINT32 269
|
||||
# define KW_UINT64 270
|
||||
# define KW_FLOAT64 271
|
||||
# define KW_STRING 272
|
||||
# define KW_BLOB 273
|
||||
# define KW_INT8ARRAY 274
|
||||
# define KW_INT16ARRAY 275
|
||||
# define KW_INT32ARRAY 276
|
||||
# define KW_UINT8ARRAY 277
|
||||
# define KW_UINT16ARRAY 278
|
||||
# define KW_UINT32ARRAY 279
|
||||
# define KW_UINT32UINT8ARRAY 280
|
||||
# define KW_MOL 281
|
||||
# define KW_REQUIRED 282
|
||||
# define KW_BROADCAST 283
|
||||
# define KW_P2P 284
|
||||
# define KW_RAM 285
|
||||
# define KW_DB 286
|
||||
# define KW_CLSEND 287
|
||||
# define KW_CLRECV 288
|
||||
# define KW_OWNSEND 289
|
||||
/* Skeleton parser for Yacc-like parsing with Bison,
|
||||
Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002 Free Software Foundation, Inc.
|
||||
|
||||
This program is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation; either version 2, or (at your option)
|
||||
any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program; if not, write to the Free Software
|
||||
Foundation, Inc., 59 Temple Place - Suite 330,
|
||||
Boston, MA 02111-1307, USA. */
|
||||
|
||||
/* As a special exception, when this file is copied by Bison into a
|
||||
Bison output file, you may use that output file without restriction.
|
||||
This special exception was added by the Free Software Foundation
|
||||
in version 1.24 of Bison. */
|
||||
|
||||
/* Tokens. */
|
||||
#ifndef YYTOKENTYPE
|
||||
# define YYTOKENTYPE
|
||||
/* Put the tokens into the symbol table, so that GDB and other debuggers
|
||||
know about them. */
|
||||
enum yytokentype {
|
||||
INTEGER = 258,
|
||||
REAL = 259,
|
||||
STRING = 260,
|
||||
HEX_STRING = 261,
|
||||
IDENTIFIER = 262,
|
||||
KW_DCLASS = 263,
|
||||
KW_INT8 = 264,
|
||||
KW_INT16 = 265,
|
||||
KW_INT32 = 266,
|
||||
KW_INT64 = 267,
|
||||
KW_UINT8 = 268,
|
||||
KW_UINT16 = 269,
|
||||
KW_UINT32 = 270,
|
||||
KW_UINT64 = 271,
|
||||
KW_FLOAT64 = 272,
|
||||
KW_STRING = 273,
|
||||
KW_BLOB = 274,
|
||||
KW_INT8ARRAY = 275,
|
||||
KW_INT16ARRAY = 276,
|
||||
KW_INT32ARRAY = 277,
|
||||
KW_UINT8ARRAY = 278,
|
||||
KW_UINT16ARRAY = 279,
|
||||
KW_UINT32ARRAY = 280,
|
||||
KW_UINT32UINT8ARRAY = 281,
|
||||
KW_MOL = 282,
|
||||
KW_REQUIRED = 283,
|
||||
KW_BROADCAST = 284,
|
||||
KW_P2P = 285,
|
||||
KW_RAM = 286,
|
||||
KW_DB = 287,
|
||||
KW_CLSEND = 288,
|
||||
KW_CLRECV = 289,
|
||||
KW_OWNSEND = 290
|
||||
};
|
||||
#endif
|
||||
#define INTEGER 258
|
||||
#define REAL 259
|
||||
#define STRING 260
|
||||
#define HEX_STRING 261
|
||||
#define IDENTIFIER 262
|
||||
#define KW_DCLASS 263
|
||||
#define KW_INT8 264
|
||||
#define KW_INT16 265
|
||||
#define KW_INT32 266
|
||||
#define KW_INT64 267
|
||||
#define KW_UINT8 268
|
||||
#define KW_UINT16 269
|
||||
#define KW_UINT32 270
|
||||
#define KW_UINT64 271
|
||||
#define KW_FLOAT64 272
|
||||
#define KW_STRING 273
|
||||
#define KW_BLOB 274
|
||||
#define KW_INT8ARRAY 275
|
||||
#define KW_INT16ARRAY 276
|
||||
#define KW_INT32ARRAY 277
|
||||
#define KW_UINT8ARRAY 278
|
||||
#define KW_UINT16ARRAY 279
|
||||
#define KW_UINT32ARRAY 280
|
||||
#define KW_UINT32UINT8ARRAY 281
|
||||
#define KW_MOL 282
|
||||
#define KW_REQUIRED 283
|
||||
#define KW_BROADCAST 284
|
||||
#define KW_P2P 285
|
||||
#define KW_RAM 286
|
||||
#define KW_DB 287
|
||||
#define KW_CLSEND 288
|
||||
#define KW_CLRECV 289
|
||||
#define KW_OWNSEND 290
|
||||
|
||||
|
||||
|
||||
|
||||
#if ! defined (YYSTYPE) && ! defined (YYSTYPE_IS_DECLARED)
|
||||
typedef int YYSTYPE;
|
||||
# define yystype YYSTYPE /* obsolescent; will be withdrawn */
|
||||
# define YYSTYPE_IS_DECLARED 1
|
||||
# define YYSTYPE_IS_TRIVIAL 1
|
||||
#endif
|
||||
|
||||
extern YYSTYPE dcyylval;
|
||||
|
||||
#endif /* not BISON_Y_TAB_H */
|
||||
|
||||
|
||||
|
@ -1125,7 +1125,7 @@ YY_MALLOC_DECL
|
||||
YY_DECL
|
||||
{
|
||||
register yy_state_type yy_current_state;
|
||||
register char *yy_cp = NULL, *yy_bp = NULL;
|
||||
register char *yy_cp, *yy_bp;
|
||||
register int yy_act;
|
||||
|
||||
#line 290 "lexer.lxx"
|
||||
@ -2553,6 +2553,11 @@ YY_BUFFER_STATE b;
|
||||
}
|
||||
|
||||
|
||||
#ifndef YY_ALWAYS_INTERACTIVE
|
||||
#ifndef YY_NEVER_INTERACTIVE
|
||||
extern int isatty YY_PROTO(( int ));
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#ifdef YY_USE_PROTOS
|
||||
void yy_init_buffer( YY_BUFFER_STATE b, FILE *file )
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -1,90 +1,212 @@
|
||||
#ifndef BISON_Y_TAB_H
|
||||
# define BISON_Y_TAB_H
|
||||
/* A Bison parser, made by GNU Bison 1.875. */
|
||||
|
||||
# define NUMBER 257
|
||||
# define ULONG 258
|
||||
# define STRING 259
|
||||
# define BEZIERCURVE 260
|
||||
# define BFACE 261
|
||||
# define BILLBOARD 262
|
||||
# define BILLBOARDCENTER 263
|
||||
# define BUNDLE 264
|
||||
# define CLOSED 265
|
||||
# define COLLIDE 266
|
||||
# define COMMENT 267
|
||||
# define COORDSYSTEM 268
|
||||
# define CV 269
|
||||
# define DART 270
|
||||
# define DNORMAL 271
|
||||
# define DRGBA 272
|
||||
# define DUV 273
|
||||
# define DXYZ 274
|
||||
# define DCS 275
|
||||
# define DISTANCE 276
|
||||
# define DTREF 277
|
||||
# define DYNAMICVERTEXPOOL 278
|
||||
# define EXTERNAL_FILE 279
|
||||
# define FLIGHT 280
|
||||
# define GROUP 281
|
||||
# define HIP 282
|
||||
# define INTANGENT 283
|
||||
# define JOINT 284
|
||||
# define KNOTS 285
|
||||
# define INCLUDE 286
|
||||
# define INSTANCE 287
|
||||
# define LOOP 288
|
||||
# define MATERIAL 289
|
||||
# define MATRIX3 290
|
||||
# define MATRIX4 291
|
||||
# define MODEL 292
|
||||
# define MREF 293
|
||||
# define NORMAL 294
|
||||
# define NURBSCURVE 295
|
||||
# define NURBSSURFACE 296
|
||||
# define OBJECTTYPE 297
|
||||
# define ORDER 298
|
||||
# define OUTTANGENT 299
|
||||
# define POINTLIGHT 300
|
||||
# define POLYGON 301
|
||||
# define REF 302
|
||||
# define RGBA 303
|
||||
# define ROTATE 304
|
||||
# define ROTX 305
|
||||
# define ROTY 306
|
||||
# define ROTZ 307
|
||||
# define SANIM 308
|
||||
# define SCALAR 309
|
||||
# define SCALE 310
|
||||
# define SEQUENCE 311
|
||||
# define SHADING 312
|
||||
# define SWITCH 313
|
||||
# define SWITCHCONDITION 314
|
||||
# define TABLE 315
|
||||
# define TABLE_V 316
|
||||
# define TAG 317
|
||||
# define TEXLIST 318
|
||||
# define TEXTURE 319
|
||||
# define TLENGTHS 320
|
||||
# define TRANSFORM 321
|
||||
# define TRANSLATE 322
|
||||
# define TREF 323
|
||||
# define TRIM 324
|
||||
# define TXT 325
|
||||
# define UKNOTS 326
|
||||
# define UV 327
|
||||
# define VKNOTS 328
|
||||
# define VERTEX 329
|
||||
# define VERTEXANIM 330
|
||||
# define VERTEXPOOL 331
|
||||
# define VERTEXREF 332
|
||||
# define XFMANIM 333
|
||||
# define XFMSANIM 334
|
||||
# define START_EGG 335
|
||||
# define START_GROUP_BODY 336
|
||||
# define START_TEXTURE_BODY 337
|
||||
# define START_PRIMITIVE_BODY 338
|
||||
/* Skeleton parser for Yacc-like parsing with Bison,
|
||||
Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002 Free Software Foundation, Inc.
|
||||
|
||||
This program is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation; either version 2, or (at your option)
|
||||
any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program; if not, write to the Free Software
|
||||
Foundation, Inc., 59 Temple Place - Suite 330,
|
||||
Boston, MA 02111-1307, USA. */
|
||||
|
||||
/* As a special exception, when this file is copied by Bison into a
|
||||
Bison output file, you may use that output file without restriction.
|
||||
This special exception was added by the Free Software Foundation
|
||||
in version 1.24 of Bison. */
|
||||
|
||||
/* Tokens. */
|
||||
#ifndef YYTOKENTYPE
|
||||
# define YYTOKENTYPE
|
||||
/* Put the tokens into the symbol table, so that GDB and other debuggers
|
||||
know about them. */
|
||||
enum yytokentype {
|
||||
NUMBER = 258,
|
||||
ULONG = 259,
|
||||
STRING = 260,
|
||||
BEZIERCURVE = 261,
|
||||
BFACE = 262,
|
||||
BILLBOARD = 263,
|
||||
BILLBOARDCENTER = 264,
|
||||
BUNDLE = 265,
|
||||
CLOSED = 266,
|
||||
COLLIDE = 267,
|
||||
COMMENT = 268,
|
||||
COORDSYSTEM = 269,
|
||||
CV = 270,
|
||||
DART = 271,
|
||||
DNORMAL = 272,
|
||||
DRGBA = 273,
|
||||
DUV = 274,
|
||||
DXYZ = 275,
|
||||
DCS = 276,
|
||||
DISTANCE = 277,
|
||||
DTREF = 278,
|
||||
DYNAMICVERTEXPOOL = 279,
|
||||
EXTERNAL_FILE = 280,
|
||||
FLIGHT = 281,
|
||||
GROUP = 282,
|
||||
HIP = 283,
|
||||
INTANGENT = 284,
|
||||
JOINT = 285,
|
||||
KNOTS = 286,
|
||||
INCLUDE = 287,
|
||||
INSTANCE = 288,
|
||||
LOOP = 289,
|
||||
MATERIAL = 290,
|
||||
MATRIX3 = 291,
|
||||
MATRIX4 = 292,
|
||||
MODEL = 293,
|
||||
MREF = 294,
|
||||
NORMAL = 295,
|
||||
NURBSCURVE = 296,
|
||||
NURBSSURFACE = 297,
|
||||
OBJECTTYPE = 298,
|
||||
ORDER = 299,
|
||||
OUTTANGENT = 300,
|
||||
POINTLIGHT = 301,
|
||||
POLYGON = 302,
|
||||
REF = 303,
|
||||
RGBA = 304,
|
||||
ROTATE = 305,
|
||||
ROTX = 306,
|
||||
ROTY = 307,
|
||||
ROTZ = 308,
|
||||
SANIM = 309,
|
||||
SCALAR = 310,
|
||||
SCALE = 311,
|
||||
SEQUENCE = 312,
|
||||
SHADING = 313,
|
||||
SWITCH = 314,
|
||||
SWITCHCONDITION = 315,
|
||||
TABLE = 316,
|
||||
TABLE_V = 317,
|
||||
TAG = 318,
|
||||
TEXLIST = 319,
|
||||
TEXTURE = 320,
|
||||
TLENGTHS = 321,
|
||||
TRANSFORM = 322,
|
||||
TRANSLATE = 323,
|
||||
TREF = 324,
|
||||
TRIM = 325,
|
||||
TXT = 326,
|
||||
UKNOTS = 327,
|
||||
UV = 328,
|
||||
VKNOTS = 329,
|
||||
VERTEX = 330,
|
||||
VERTEXANIM = 331,
|
||||
VERTEXPOOL = 332,
|
||||
VERTEXREF = 333,
|
||||
XFMANIM = 334,
|
||||
XFMSANIM = 335,
|
||||
START_EGG = 336,
|
||||
START_GROUP_BODY = 337,
|
||||
START_TEXTURE_BODY = 338,
|
||||
START_PRIMITIVE_BODY = 339
|
||||
};
|
||||
#endif
|
||||
#define NUMBER 258
|
||||
#define ULONG 259
|
||||
#define STRING 260
|
||||
#define BEZIERCURVE 261
|
||||
#define BFACE 262
|
||||
#define BILLBOARD 263
|
||||
#define BILLBOARDCENTER 264
|
||||
#define BUNDLE 265
|
||||
#define CLOSED 266
|
||||
#define COLLIDE 267
|
||||
#define COMMENT 268
|
||||
#define COORDSYSTEM 269
|
||||
#define CV 270
|
||||
#define DART 271
|
||||
#define DNORMAL 272
|
||||
#define DRGBA 273
|
||||
#define DUV 274
|
||||
#define DXYZ 275
|
||||
#define DCS 276
|
||||
#define DISTANCE 277
|
||||
#define DTREF 278
|
||||
#define DYNAMICVERTEXPOOL 279
|
||||
#define EXTERNAL_FILE 280
|
||||
#define FLIGHT 281
|
||||
#define GROUP 282
|
||||
#define HIP 283
|
||||
#define INTANGENT 284
|
||||
#define JOINT 285
|
||||
#define KNOTS 286
|
||||
#define INCLUDE 287
|
||||
#define INSTANCE 288
|
||||
#define LOOP 289
|
||||
#define MATERIAL 290
|
||||
#define MATRIX3 291
|
||||
#define MATRIX4 292
|
||||
#define MODEL 293
|
||||
#define MREF 294
|
||||
#define NORMAL 295
|
||||
#define NURBSCURVE 296
|
||||
#define NURBSSURFACE 297
|
||||
#define OBJECTTYPE 298
|
||||
#define ORDER 299
|
||||
#define OUTTANGENT 300
|
||||
#define POINTLIGHT 301
|
||||
#define POLYGON 302
|
||||
#define REF 303
|
||||
#define RGBA 304
|
||||
#define ROTATE 305
|
||||
#define ROTX 306
|
||||
#define ROTY 307
|
||||
#define ROTZ 308
|
||||
#define SANIM 309
|
||||
#define SCALAR 310
|
||||
#define SCALE 311
|
||||
#define SEQUENCE 312
|
||||
#define SHADING 313
|
||||
#define SWITCH 314
|
||||
#define SWITCHCONDITION 315
|
||||
#define TABLE 316
|
||||
#define TABLE_V 317
|
||||
#define TAG 318
|
||||
#define TEXLIST 319
|
||||
#define TEXTURE 320
|
||||
#define TLENGTHS 321
|
||||
#define TRANSFORM 322
|
||||
#define TRANSLATE 323
|
||||
#define TREF 324
|
||||
#define TRIM 325
|
||||
#define TXT 326
|
||||
#define UKNOTS 327
|
||||
#define UV 328
|
||||
#define VKNOTS 329
|
||||
#define VERTEX 330
|
||||
#define VERTEXANIM 331
|
||||
#define VERTEXPOOL 332
|
||||
#define VERTEXREF 333
|
||||
#define XFMANIM 334
|
||||
#define XFMSANIM 335
|
||||
#define START_EGG 336
|
||||
#define START_GROUP_BODY 337
|
||||
#define START_TEXTURE_BODY 338
|
||||
#define START_PRIMITIVE_BODY 339
|
||||
|
||||
|
||||
|
||||
|
||||
#if ! defined (YYSTYPE) && ! defined (YYSTYPE_IS_DECLARED)
|
||||
typedef int YYSTYPE;
|
||||
# define yystype YYSTYPE /* obsolescent; will be withdrawn */
|
||||
# define YYSTYPE_IS_DECLARED 1
|
||||
# define YYSTYPE_IS_TRIVIAL 1
|
||||
#endif
|
||||
|
||||
extern YYSTYPE eggyylval;
|
||||
|
||||
#endif /* not BISON_Y_TAB_H */
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user