Skip to content

Commit

Permalink
fix: support $-xxx variable pattern
Browse files Browse the repository at this point in the history
  • Loading branch information
yjl9903 committed Apr 24, 2024
1 parent a31de4c commit 4b63ab9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/syntax/tir.flex
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ END_OF_LINE_COMMENT=("//")[^\r\n]*
//KEY_CHARACTER=[^:=\ \n\t\f\\] | "\\ "
//FIRST_VALUE_CHARACTER=[^ \n\f\\] | "\\"{CRLF} | "\\".
//VALUE_CHARACTER=[^\n\f\\] | "\\"{CRLF} | "\\".
IDENTIFIER_CHARACTER=[a-zA-Z$_%][a-zA-Z0-9$_]*
IDENTIFIER_CHARACTER=[a-zA-Z$_%][a-zA-Z0-9$_\-]*

%state WAITING_VALUE

Expand Down

0 comments on commit 4b63ab9

Please sign in to comment.