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

📄 test.g

📁 SRI international 发布的OAA框架软件
💻 G
字号:
/* This is test.g which tests simple AST refs and construction */

/* Revised 2002-2-15: preorder_action prototype no longer
   matched prototype of base class.  (Eero Ivask, 
   Tallinn Technical University, Estonia).
*/   

<<
typedef ANTLRCommonToken ANTLRToken;
#include "DLGLexer.h"
#include "PBlackBox.h"

class AST : public ASTBase {
public:
	ANTLRTokenPtr token;
	AST(ANTLRTokenPtr t) { token = t; }
	void preorder_action(void * clientData) {
		char *s = token->getText();
		printf(" %s", s);
	}
};

int main()
{
	ParserBlackBox<DLGLexer, Expr, ANTLRToken> p(stdin);
	ASTBase *root = NULL;
	p.parser()->e(&root);
	root->preorder();
	printf("\n");
	root->destroy();
	return 0;
}
>>

#token "[\ \t\n]+"	<<skip();>>
#token Eof "@"

class Expr {				/* Define a grammar class */

e	:	mult_expr ( ("\+"^|"\-"^) mult_expr )*
	;

mult_expr
	:	atom ( ("\*"^|"\/"^) atom )*
	;

atom:	IDENTIFIER
	|	NUMBER
	;

}

#token IDENTIFIER	"[a-z]+"
#token NUMBER		"[0-9]+"

⌨️ 快捷键说明

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