代码搜索:parser
找到约 10,000 项符合「parser」的源代码
代码结果 10,000
www.eeworm.com/read/314622/13563271
cpp parser.cpp
#include"parser.h"
#ifndef PARSER_DEBUG
#include"semantics.h"
#endif
#ifdef PARSER_DEBUG
#define enter(x) printf("enter in ");printf(x);printf("\n")
#else
#define enter(x)
#en
www.eeworm.com/read/314622/13563272
h parser.h
#ifndef PARSER_H
#define PARSER_H
#include"scanner.h"
typedef double(*FuncPtr)(double);
struct ExprNode //语法树结点类型
{
enum Token_Type OpCode; //PLUS,MINUS,MUL,DIV,POWER,FUNC,CONST_ID等
www.eeworm.com/read/314616/13563609
cpp parser.cpp
#include"parser.h"
#ifndef PARSER_DEBUG
#include"semantic.h"
#endif
#ifdef PARSER_DEBUG
#define enter(x) printf("enter in ");printf(x);printf("\n")
#else
#define enter(x)
#endif
www.eeworm.com/read/314616/13563610
h parser.h
#ifndef PARSER_H
#define PARSER_H
#define PARSER_DEBUG
#include"scanner.h"
typedef double(*FuncPtr)(double);
struct ExprNode //语法树结点类型
{
enum Token_Type OpCode; //PLUS,MINUS,MUL,DIV,PO
www.eeworm.com/read/312908/13601803
cpp parser.cpp
// parser.cpp : implementation file
//
#include "stdafx.h"
#include "cminus.h"
#include "parser.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__
www.eeworm.com/read/312908/13601876
h parser.h
#ifndef _PARSER_H_
#define _PARSER_H_
#include "scaner.h"
typedef enum { kVarDec, kFunDec, kParam, kStmt, kExp } NodeKind;
typedef enum { kIf, kWhile, kGoto, kBreak, kContinue,
kRead,
www.eeworm.com/read/311492/13629934
cpp parser.cpp
// parser.cpp : implementation file
//
#include "stdafx.h"
#include "cminus.h"
#include "parser.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__
www.eeworm.com/read/311492/13630007
h parser.h
#ifndef _PARSER_H_
#define _PARSER_H_
#include "scaner.h"
typedef enum { kVarDec, kFunDec, kParam, kStmt, kExp } NodeKind;
typedef enum { kIf, kWhile, kGoto, kBreak, kContinue,
kRead,
www.eeworm.com/read/310976/13638855
java parser.java
package murlen.util.fscriptME;
import java.util.Hashtable;
import java.util.Vector;
import java.lang.*;
/**
* Parser - Does the parsing - i.e it's the brains of the code.
*
* Copyri
www.eeworm.com/read/309884/13662825
cpp parser.cpp
//parser.c
#include "stdafx.h"
#include "global.h"
int lookahead;
int lhead,lend;
int fp1_lhead;/////////////
void parse()
{
int temp;
lookahead=lexan();
while(lookahead!=DONE)
{
i