Skip to content

Commit e30fd38

Browse files
authored
mfw stung by scala string interpolation and using literal $s (I forgot to use $$ in the syntax autogen)
1 parent d510b79 commit e30fd38

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/common/scripts/language/vyxal-lit.grammar

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ lambda<"reduce<">
9292
WeirdKW {$[a-zA-Z\-?]$[a-zA-Z0-9\-?!*+=<>&%]*":"?}
9393
ModifierKW { $[a-zA-Z]$[a-zA-Z0-9\-?!*+=<>&%]*":"}
9494
NormalKW { $[a-zA-Z]$[a-zA-Z0-9\-?!*+=<>&%]*"n't"*}
95-
VariableThing { ("" | ":=" | ":>" | ":=[") $[a-zA-Z]$[a-zA-Z0-9_]* }
95+
VariableThing { ("$" | ":=" | ":>" | ":=[") $[a-zA-Z]$[a-zA-Z0-9_]* }
9696
Number { "." | "0" | ($[1-9] $[0-9]*) }
9797
ListStuff { "[" | "]" }
9898
String {'"' (!["„”“\\] | "\\" _)* $["„”“]}

0 commit comments

Comments
 (0)