Skip to content

Commit

Permalink
Added missing symbols to Lexer
Browse files Browse the repository at this point in the history
  • Loading branch information
KyrylR committed Aug 29, 2024
1 parent 4083217 commit 4724b90
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions grammar/LexerCircom.g4
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,10 @@ RB: ']' ;
LC: '{' ;
RC: '}' ;

COLON: ':' ;
SEMICOLON: ';' ;

DOT: '.' ;
COMMA: ',' ;

ASSIGNMENT: '=' ;
Expand All @@ -75,6 +77,10 @@ RIGHT_ASSIGNMENT: '-->' | '==>' ;

CONSTRAINT_EQ: '===' ;

QUESTION_MARK: '?' ;

UNDERSCORE: '_' ;

NOT: '!' ;
BNOT: '~' ;

Expand Down

0 comments on commit 4724b90

Please sign in to comment.