📄 swf5compiler.tab.c
字号:
/* A Bison parser, made by GNU Bison 2.3. *//* Skeleton implementation for Bison's Yacc-like parsers in C Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004, 2005, 2006 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *//* 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. *//* C LALR(1) parser skeleton written by Richard Stallman, by simplifying the original so-called "semantic" parser. *//* All symbols defined below should begin with yy or YY, to avoid infringing on user name space. This should be done even for local variables, as they might otherwise be expanded by user macros. There are some unavoidable exceptions within include files to define necessary library symbols; they are noted "INFRINGES ON USER NAME SPACE" below. *//* Identify Bison output. */#define YYBISON 1/* Bison version. */#define YYBISON_VERSION "2.3"/* Skeleton name. */#define YYSKELETON_NAME "yacc.c"/* Pure parsers. */#define YYPURE 0/* Using locations. */#define YYLSP_NEEDED 0/* Substitute the variable and function names. */#define yyparse swf5parse#define yylex swf5lex#define yyerror swf5error#define yylval swf5lval#define yychar swf5char#define yydebug swf5debug#define yynerrs swf5nerrs/* Tokens. */#ifndef YYTOKENTYPE# define YYTOKENTYPE /* Put the tokens into the symbol table, so that GDB and other debuggers know about them. */ enum yytokentype { BREAK = 258, CONTINUE = 259, FUNCTION = 260, ELSE = 261, SWITCH = 262, CASE = 263, DEFAULT = 264, FOR = 265, IN = 266, IF = 267, WHILE = 268, DO = 269, VAR = 270, NEW = 271, DELETE = 272, TARGETPATH = 273, RETURN = 274, END = 275, WITH = 276, ASM = 277, EVAL = 278, RANDOM = 279, GETTIMER = 280, LENGTH = 281, CONCAT = 282, SUBSTR = 283, TRACE = 284, INT = 285, ORD = 286, CHR = 287, GETURL = 288, GETURL1 = 289, NEXTFRAME = 290, PREVFRAME = 291, PLAY = 292, STOP = 293, TOGGLEQUALITY = 294, STOPSOUNDS = 295, DUP = 296, SWAP = 297, POP = 298, PUSH = 299, SETREGISTER = 300, CALLFUNCTION = 301, CALLMETHOD = 302, NEWOBJECT = 303, NEWMETHOD = 304, AND = 305, OR = 306, XOR = 307, MODULO = 308, ADD = 309, LESSTHAN = 310, EQUALS = 311, INC = 312, DEC = 313, TYPEOF = 314, INSTANCEOF = 315, ENUMERATE = 316, INITOBJECT = 317, INITARRAY = 318, GETMEMBER = 319, SETMEMBER = 320, SHIFTLEFT = 321, SHIFTRIGHT = 322, SHIFTRIGHT2 = 323, VAREQUALS = 324, OLDADD = 325, SUBTRACT = 326, MULTIPLY = 327, DIVIDE = 328, OLDEQUALS = 329, OLDLESSTHAN = 330, LOGICALAND = 331, LOGICALOR = 332, NOT = 333, STRINGEQ = 334, STRINGLENGTH = 335, SUBSTRING = 336, GETVARIABLE = 337, SETVARIABLE = 338, SETTARGETEXPRESSION = 339, DUPLICATEMOVIECLIP = 340, REMOVEMOVIECLIP = 341, STRINGLESSTHAN = 342, MBLENGTH = 343, MBSUBSTRING = 344, MBORD = 345, MBCHR = 346, BRANCHALWAYS = 347, BRANCHIFTRUE = 348, GETURL2 = 349, POST = 350, GET = 351, CAST = 352, LOADVARIABLES = 353, LOADMOVIE = 354, LOADVARIABLESNUM = 355, LOADMOVIENUM = 356, CALLFRAME = 357, STARTDRAG = 358, STOPDRAG = 359, GOTOANDSTOP = 360, GOTOANDPLAY = 361, SETTARGET = 362, GETPROPERTY = 363, SETPROPERTY = 364, TONUMBER = 365, TOSTRING = 366, TRY = 367, THROW = 368, CATCH = 369, FINALLY = 370, THIS = 371, EXTENDS = 372, IMPLEMENTS = 373, FSCOMMAND2 = 374, CLASS = 375, PUBLIC = 376, PRIVATE = 377, NULLVAL = 378, UNDEFINED = 379, INTEGER = 380, DOUBLE = 381, BOOLEAN = 382, REGISTER = 383, BROKENSTRING = 384, STRING = 385, IDENTIFIER = 386, EQ = 387, EEQ = 388, NEE = 389, LE = 390, GE = 391, NE = 392, LAN = 393, LOR = 394, INCR = 395, DECR = 396, IEQ = 397, DEQ = 398, MEQ = 399, SEQ = 400, REQ = 401, AEQ = 402, OEQ = 403, SHL = 404, SHR = 405, SHR2 = 406, SHLEQ = 407, SHREQ = 408, SHR2EQ = 409, _P_X = 410, _P_Y = 411, _P_XSCALE = 412, _P_YSCALE = 413, _P_CURRENTFRAME = 414, _P_TOTALFRAMES = 415, _P_ALPHA = 416, _P_VISIBLE = 417, _P_WIDTH = 418, _P_HEIGHT = 419, _P_ROTATION = 420, _P_TARGET = 421, _P_FRAMESLOADED = 422, _P_NAME = 423, _P_DROPTARGET = 424, _P_URL = 425, _P_HIGHQUALITY = 426, _P_FOCUSRECT = 427, _P_SOUNDBUFTIME = 428, _P_QUALITY = 429, _P_XMOUSE = 430, _P_YMOUSE = 431, NOELSE = 432, UMINUS = 434, POSTFIX = 435 };#endif/* Tokens. */#define BREAK 258#define CONTINUE 259#define FUNCTION 260#define ELSE 261#define SWITCH 262#define CASE 263#define DEFAULT 264#define FOR 265#define IN 266#define IF 267#define WHILE 268#define DO 269#define VAR 270#define NEW 271#define DELETE 272#define TARGETPATH 273#define RETURN 274#define END 275#define WITH 276#define ASM 277#define EVAL 278#define RANDOM 279#define GETTIMER 280#define LENGTH 281#define CONCAT 282#define SUBSTR 283#define TRACE 284#define INT 285#define ORD 286#define CHR 287#define GETURL 288#define GETURL1 289#define NEXTFRAME 290#define PREVFRAME 291#define PLAY 292#define STOP 293#define TOGGLEQUALITY 294#define STOPSOUNDS 295
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -