mirror of
https://bitbucket.org/smil3y/kdelibs.git
synced 2025-02-24 10:52:49 +00:00
174 lines
4.3 KiB
C
174 lines
4.3 KiB
C
/* A Bison parser, made by GNU Bison 3.0.4. */
|
|
|
|
/* Bison interface for Yacc-like parsers in C
|
|
|
|
Copyright (C) 1984, 1989-1990, 2000-2015 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 3 of the License, 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, see <http://www.gnu.org/licenses/>. */
|
|
|
|
/* As a special exception, you may create a larger work that contains
|
|
part or all of the Bison parser skeleton and distribute that work
|
|
under terms of your choice, so long as that work isn't itself a
|
|
parser generator using the skeleton or a modified version thereof
|
|
as a parser skeleton. Alternatively, if you modify or redistribute
|
|
the parser skeleton itself, you may (at your option) remove this
|
|
special exception, which will cause the skeleton and the resulting
|
|
Bison output files to be licensed under the GNU General Public
|
|
License without this special exception.
|
|
|
|
This special exception was added by the Free Software Foundation in
|
|
version 2.2 of Bison. */
|
|
|
|
#ifndef YY_KJSYY_GRAMMAR_TAB_H_INCLUDED
|
|
# define YY_KJSYY_GRAMMAR_TAB_H_INCLUDED
|
|
/* Debug traces. */
|
|
#ifndef YYDEBUG
|
|
# define YYDEBUG 0
|
|
#endif
|
|
#if YYDEBUG
|
|
extern int kjsyydebug;
|
|
#endif
|
|
|
|
/* Token type. */
|
|
#ifndef YYTOKENTYPE
|
|
# define YYTOKENTYPE
|
|
enum yytokentype
|
|
{
|
|
NULLTOKEN = 258,
|
|
TRUETOKEN = 259,
|
|
FALSETOKEN = 260,
|
|
BREAK = 261,
|
|
CASE = 262,
|
|
DEFAULT = 263,
|
|
FOR = 264,
|
|
NEW = 265,
|
|
VAR = 266,
|
|
CONSTTOKEN = 267,
|
|
CONTINUE = 268,
|
|
FUNCTION = 269,
|
|
RETURN = 270,
|
|
VOIDTOKEN = 271,
|
|
DELETETOKEN = 272,
|
|
IF = 273,
|
|
THISTOKEN = 274,
|
|
DO = 275,
|
|
WHILE = 276,
|
|
INTOKEN = 277,
|
|
INSTANCEOF = 278,
|
|
TYPEOF = 279,
|
|
SWITCH = 280,
|
|
WITH = 281,
|
|
RESERVED = 282,
|
|
THROW = 283,
|
|
TRY = 284,
|
|
CATCH = 285,
|
|
FINALLY = 286,
|
|
DEBUGGER = 287,
|
|
IMPORT = 288,
|
|
IF_WITHOUT_ELSE = 289,
|
|
ELSE = 290,
|
|
EQEQ = 291,
|
|
NE = 292,
|
|
STREQ = 293,
|
|
STRNEQ = 294,
|
|
LE = 295,
|
|
GE = 296,
|
|
OR = 297,
|
|
AND = 298,
|
|
PLUSPLUS = 299,
|
|
MINUSMINUS = 300,
|
|
LSHIFT = 301,
|
|
RSHIFT = 302,
|
|
URSHIFT = 303,
|
|
PLUSEQUAL = 304,
|
|
MINUSEQUAL = 305,
|
|
MULTEQUAL = 306,
|
|
DIVEQUAL = 307,
|
|
LSHIFTEQUAL = 308,
|
|
RSHIFTEQUAL = 309,
|
|
URSHIFTEQUAL = 310,
|
|
ANDEQUAL = 311,
|
|
MODEQUAL = 312,
|
|
XOREQUAL = 313,
|
|
OREQUAL = 314,
|
|
NUMBER = 315,
|
|
STRING = 316,
|
|
IDENT = 317,
|
|
AUTOPLUSPLUS = 318,
|
|
AUTOMINUSMINUS = 319
|
|
};
|
|
#endif
|
|
|
|
/* Value type. */
|
|
#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
|
|
|
|
union YYSTYPE
|
|
{
|
|
#line 64 "grammar.y" /* yacc.c:1909 */
|
|
|
|
int ival;
|
|
double dval;
|
|
UString *ustr;
|
|
Identifier *ident;
|
|
Node *node;
|
|
StatementNode *stat;
|
|
ParameterNode *param;
|
|
FunctionBodyNode *body;
|
|
FuncDeclNode *func;
|
|
FuncExprNode *funcExpr;
|
|
ProgramNode *prog;
|
|
AssignExprNode *init;
|
|
SourceElementsNode *srcs;
|
|
ArgumentsNode *args;
|
|
ArgumentListNode *alist;
|
|
VarDeclNode *decl;
|
|
VarDeclListNode *vlist;
|
|
CaseBlockNode *cblk;
|
|
ClauseListNode *clist;
|
|
CaseClauseNode *ccl;
|
|
ElementNode *elm;
|
|
Operator op;
|
|
PropertyListNode *plist;
|
|
PropertyNode *pnode;
|
|
PropertyNameNode *pname;
|
|
PackageNameNode *pkgn;
|
|
|
|
#line 148 "grammar.tab.h" /* yacc.c:1909 */
|
|
};
|
|
|
|
typedef union YYSTYPE YYSTYPE;
|
|
# define YYSTYPE_IS_TRIVIAL 1
|
|
# define YYSTYPE_IS_DECLARED 1
|
|
#endif
|
|
|
|
/* Location type. */
|
|
#if ! defined YYLTYPE && ! defined YYLTYPE_IS_DECLARED
|
|
typedef struct YYLTYPE YYLTYPE;
|
|
struct YYLTYPE
|
|
{
|
|
int first_line;
|
|
int first_column;
|
|
int last_line;
|
|
int last_column;
|
|
};
|
|
# define YYLTYPE_IS_DECLARED 1
|
|
# define YYLTYPE_IS_TRIVIAL 1
|
|
#endif
|
|
|
|
|
|
extern YYSTYPE kjsyylval;
|
|
extern YYLTYPE kjsyylloc;
|
|
int kjsyyparse (void);
|
|
|
|
#endif /* !YY_KJSYY_GRAMMAR_TAB_H_INCLUDED */
|