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

📄 grammarfilter.g

📁 antlr最新版本V3源代码
💻 G
字号:
lexer grammar GrammarFilter;options {	language=ObjC;	filter=true;}@ivars {	id delegate;}@methodsdecl {- (void) setDelegate:(id)theDelegate;}@methods {- (void) setDelegate:(id)theDelegate{	delegate = theDelegate;	// not retained, will always be the object creating this lexer!}}// figure out the grammar type in this fileGRAMMAR	:	(	grammarType=GRAMMAR_TYPE {[delegate setGrammarType:$grammarType.text]; } WS		|	/* empty, must be parser or combined grammar */ {[delegate setGrammarType:@"parser"]; [delegate setIsCombinedGrammar:NO]; }		) 		'grammar' WS grammarName=ID { [delegate setGrammarName:$grammarName.text]; } WS? ';'	;fragmentGRAMMAR_TYPE	:  ('lexer'|'parser'|'tree')	;	// find out if this grammar depends on other grammarsOPTIONS	:	'options' WS? '{'		( (WS? '//') => SL_COMMENT		| (WS? '/*') => COMMENT		| (WS? 'tokenVocab') => WS? 'tokenVocab' WS? '=' WS? tokenVocab=ID WS? ';' { [delegate setDependsOnVocab:$tokenVocab.text]; }		| WS? ID WS? '=' WS? ID WS?';'		)*		WS? '}'	;// look for lexer rules when in parser grammar -> this LEXER_RULE	:	('A'..'Z') ID? WS? ':' (options {greedy=false;} : .)* ';' { [delegate setIsCombinedGrammar:YES]; }	;// ignore stuff in commentsCOMMENT    :   '/*' (options {greedy=false;} : . )* '*/'    ;SL_COMMENT    :   '//' (options {greedy=false;} : . )* '\n'    ;// throw away all actions, as they might confuse LEXER_RULEACTION	:	'{' (options {greedy=false;} : .)* '}'	;// similarly throw away stringsSTRING	:	'\'' (options {greedy=false;} : .)* '\''	;fragmentID  :   ('a'..'z'|'A'..'Z'|'_'|'0'..'9')+    ;	WS  :   (' '|'\t'|'\n')+    ;

⌨️ 快捷键说明

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