t025lexerrulepropertyref.g

来自「antlr最新版本V3源代码」· G 代码 · 共 19 行

G
19
字号
lexer grammar t025lexerRulePropertyRef;options {  language = Python;}@lexer::init {self.properties = []}IDENTIFIER:         ('a'..'z'|'A'..'Z'|'_') ('a'..'z'|'A'..'Z'|'0'..'9'|'_')*        {self.properties.append(    ($text, $type, $line, $pos, $index, $channel, $start, $stop))        }    ;WS: (' ' | '\n')+;

⌨️ 快捷键说明

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