Skip to content

Commit

Permalink
Merge pull request #287 from ftsrg/xstsvarname
Browse files Browse the repository at this point in the history
Allow `$` in xsts variable names
  • Loading branch information
mondokm authored Jul 31, 2024
2 parents 0c85d3b + d45bf1c commit 1dba638
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ buildscript {

allprojects {
group = "hu.bme.mit.theta"
version = "6.2.2"
version = "6.2.3"

apply(from = rootDir.resolve("gradle/shared-with-buildSrc/mirrors.gradle.kts"))
}
Expand Down
2 changes: 1 addition & 1 deletion subprojects/xsts/xsts/src/main/antlr/XstsDsl.g4
Original file line number Diff line number Diff line change
Expand Up @@ -438,7 +438,7 @@ INTLIT
;

ID
: [a-zA-Z_][a-zA-Z0-9_]*
: [a-zA-Z_$][a-zA-Z0-9_$]*
;

WS
Expand Down

0 comments on commit 1dba638

Please sign in to comment.