initial commit

This commit is contained in:
CaiHQ
2021-09-24 17:37:28 +08:00
parent 367ca4f25e
commit 8aa75561b8
13 changed files with 2125 additions and 23 deletions

10
input/ExprParser.g4 Normal file
View File

@@ -0,0 +1,10 @@
parser grammar ExprParser;
options {
tokenVocab=JavaScriptLexer;
superClass=JavaScriptBaseParser;
}
program
:Contract Identifier '{' '}'
;