⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 y.tab.h

📁 java interpreter in formal language and translators
💻 H
字号:
/* A Bison parser, made by GNU Bison 2.3.  *//* Skeleton interface 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.  *//* Tokens.  */#ifndef YYTOKENTYPE# define YYTOKENTYPE   /* Put the tokens into the symbol table, so that GDB and other debuggers      know about them.  */   enum yytokentype {     OP_ADD = 258,     OP_SUB = 259,     OP_MUL = 260,     OP_DIV = 261,     OP_EQ = 262,     OP_LE = 263,     OP_GE = 264,     OP_NE = 265,     OP_Logical_OR = 266,     OP_Logical_AND = 267,     OP_INC = 268,     OP_DEC = 269,     CLASS = 270,     ABSTRACT = 271,     IMPLEMENTS = 272,     INTERFACE = 273,     EXTENDS = 274,     PACKAGE = 275,     IMPORT = 276,     PUBLIC = 277,     STATIC = 278,     PRIVATE = 279,     PROTECTED = 280,     FINAL = 281,     RETURN = 282,     VOID = 283,     INT = 284,     CHAR = 285,     BOOLEAN = 286,     SUPER = 287,     THIS = 288,     JNULL = 289,     IF = 290,     ELSE = 291,     WHILE = 292,     DO = 293,     FOR = 294,     OPERATOR = 295,     OP_DIM = 296,     IDENTIFIER = 297,     LITERAL = 298,     BOOLLIT = 299   };#endif/* Tokens.  */#define OP_ADD 258#define OP_SUB 259#define OP_MUL 260#define OP_DIV 261#define OP_EQ 262#define OP_LE 263#define OP_GE 264#define OP_NE 265#define OP_Logical_OR 266#define OP_Logical_AND 267#define OP_INC 268#define OP_DEC 269#define CLASS 270#define ABSTRACT 271#define IMPLEMENTS 272#define INTERFACE 273#define EXTENDS 274#define PACKAGE 275#define IMPORT 276#define PUBLIC 277#define STATIC 278#define PRIVATE 279#define PROTECTED 280#define FINAL 281#define RETURN 282#define VOID 283#define INT 284#define CHAR 285#define BOOLEAN 286#define SUPER 287#define THIS 288#define JNULL 289#define IF 290#define ELSE 291#define WHILE 292#define DO 293#define FOR 294#define OPERATOR 295#define OP_DIM 296#define IDENTIFIER 297#define LITERAL 298#define BOOLLIT 299#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLAREDtypedef int YYSTYPE;# define yystype YYSTYPE /* obsolescent; will be withdrawn */# define YYSTYPE_IS_DECLARED 1# define YYSTYPE_IS_TRIVIAL 1#endifextern YYSTYPE yylval;

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -