Skip to content

Commit

Permalink
parser dot
Browse files Browse the repository at this point in the history
  • Loading branch information
Josef552 committed Sep 9, 2024
1 parent 9171cf3 commit b218c28
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/parser/timedAutomata.jison
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"local" %{ return 'TOK_LOCAL' %}
"layout" %{ return 'TOK_LAYOUT' %}
[0-9]+ %{ return 'TOK_INTEGER' %}
[a-zA-Z]([a-zA-Z0-9_])* %{ return 'TOK_ID' %}
[a-zA-Z_]([a-zA-Z0-9_.])* %{ return 'TOK_ID' %}
":" %{ return 'TOK_COLON' %}
"@" %{ return 'TOK_AT' %}
"{" %{ return 'TOK_LBRACE' %}
Expand Down
2 changes: 1 addition & 1 deletion src/parser/timedAutomata.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit b218c28

Please sign in to comment.