代码搜索:parser
找到约 10,000 项符合「parser」的源代码
代码结果 10,000
www.eeworm.com/read/100407/15874562
y parser.y
%{
#include "mdbsql.h"
MdbSQL *g_sql;
%}
%union {
char *name;
double dval;
int ival;
}
%token NAME PATH NUMBER STRING
%token SELECT FROM WHERE CONNECT TO LIST TABLES WHERE AND
%%
query:
SELEC
www.eeworm.com/read/100359/15876138
h parser.h
/* parser.h header file for the parser module of the Netwide
* Assembler
*
* The Netwide Assembler is copyright (C) 1996 Simon Tatham and
* Julian Hall. All rights reserved. The s
www.eeworm.com/read/100359/15876261
c parser.c
/* parser.c source line parser for the Netwide Assembler
*
* The Netwide Assembler is copyright (C) 1996 Simon Tatham and
* Julian Hall. All rights reserved. The software is
* redistributabl
www.eeworm.com/read/100333/15876941
bat parser.bat
www.eeworm.com/read/100333/15876976
y parser.y
/*
Little Smalltalk Class method syntax
differs from smalltalk-80 slightly
class heading is different
vertical bar must appear between methods
syntax for primitives is different
www.eeworm.com/read/100333/15877034
h parser.h
/*
Little Smalltalk
definitions used by parser
*/
enum vartypes {instvar, argvar, tempvar};
struct varstruct {
struct varstruct *nextvar;
enum vartypes vtype;
www.eeworm.com/read/100333/15877069
lex parser.lex
%{
/*
Little Smalltalk lexical analyzer
*/
# include
# include "primnum.h"
# undef input
# undef unput
double atof();
int linenum = 1;
%}
%%
[ \t]+