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

📄 calc.g

📁 Java写的词法/语法分析器。可生成JAVA语言或者是C++的词法和语法分析器。并可产生语法分析树和对该树进行遍历
💻 G
字号:
options {	language = "Sather";}/* This example demonstrates the heterogeneous tree construction *  mechanism.  Compare this example to examples/calc/calc.g *  to see that I use tree node methods not a tree walker to compute *  the result. */class CALC_PARSER extends Parser;options {	buildAST = true;	// uses CommonAST by default}// define a bunch of specific AST nodes to build.// can override at actual reference of tokens in grammar// below.tokens {	PLUS<AST=PLUS_NODE>;	STAR<AST=MULT_NODE>;}expr	:	mexpr (PLUS^ mexpr)* SEMI!	;mexpr	:	atom (STAR^ atom)*	;atom:	INT<AST=INT_NODE>	// could have done in tokens{} section	;class CALC_LEXER extends Lexer;WS	:	(' '	|	'\t'	|	'\n'	|	'\r')		{ sa_ttype := ANTLR_COMMON_TOKEN::SKIP; }	;LPAREN:	'('	;RPAREN:	')'	;STAR:	'*'	;PLUS:	'+'	;SEMI:	';'	;protectedDIGIT	:	'0'..'9'	;INT	:	(DIGIT)+	;

⌨️ 快捷键说明

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