From 90f730ca714fb53f47ee16be46fcb06bd98d53ed Mon Sep 17 00:00:00 2001 From: Michael Roitzsch Date: Sun, 27 Jun 2004 11:58:47 +0000 Subject: include the new goom version 2k4-dev15 everybody: test, test, test CVS patchset: 6756 CVS date: 2004/06/27 11:58:47 --- src/post/goom/goom_script_scanner.tab.h | 69 +++++++++++++++++++++++++++++++++ 1 file changed, 69 insertions(+) create mode 100644 src/post/goom/goom_script_scanner.tab.h (limited to 'src/post/goom/goom_script_scanner.tab.h') diff --git a/src/post/goom/goom_script_scanner.tab.h b/src/post/goom/goom_script_scanner.tab.h new file mode 100644 index 000000000..6b9a2e04a --- /dev/null +++ b/src/post/goom/goom_script_scanner.tab.h @@ -0,0 +1,69 @@ +/* A Bison parser, made by GNU Bison 1.875a. */ + +/* Skeleton parser for Yacc-like parsing with Bison, + Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003 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 { + TYPE_INTEGER = 258, + TYPE_FLOAT = 259, + TYPE_VAR = 260, + TYPE_PARAM = 261, + INT_TK = 262, + FLOAT_TK = 263 + }; +#endif +#define TYPE_INTEGER 258 +#define TYPE_FLOAT 259 +#define TYPE_VAR 260 +#define TYPE_PARAM 261 +#define INT_TK 262 +#define FLOAT_TK 263 + + + + +#if ! defined (YYSTYPE) && ! defined (YYSTYPE_IS_DECLARED) +#line 263 "goom_script_scanner.y" +typedef union YYSTYPE { + int intValue; + float floatValue; + char charValue; + char strValue[2048]; + NodeType *nPtr; + } YYSTYPE; +/* Line 1240 of yacc.c. */ +#line 61 "goom_script_scanner.tab.h" +# define yystype YYSTYPE /* obsolescent; will be withdrawn */ +# define YYSTYPE_IS_DECLARED 1 +# define YYSTYPE_IS_TRIVIAL 1 +#endif + +extern YYSTYPE yylval; + + + -- cgit v1.2.3