mirror of
https://gitee.com/BDWare/genparser
synced 2026-02-14 21:49:26 +00:00
10 lines
157 B
Plaintext
10 lines
157 B
Plaintext
|
|
parser grammar ExprParser;
|
||
|
|
|
||
|
|
options {
|
||
|
|
tokenVocab=JavaScriptLexer;
|
||
|
|
superClass=JavaScriptBaseParser;
|
||
|
|
}
|
||
|
|
|
||
|
|
program
|
||
|
|
:Contract Identifier '{' '}'
|
||
|
|
;
|