Skip to content

Commit

Permalink
Include underscores in NAME definition. add test case for var name wi…
Browse files Browse the repository at this point in the history
…th _ in assignment
  • Loading branch information
robinrottier committed Aug 30, 2021
1 parent e616d70 commit 35953e9
Show file tree
Hide file tree
Showing 4 changed files with 211 additions and 203 deletions.
2 changes: 1 addition & 1 deletion antlr4-fortran/Fortran77Lexer.g4
Original file line number Diff line number Diff line change
Expand Up @@ -604,7 +604,7 @@ fragment CONTINUATION


fragment ALNUM
: (ALPHA | NUM)
: (ALPHA | NUM | '_')
;


Expand Down
Loading

0 comments on commit 35953e9

Please sign in to comment.