Variable reference from $VAR to @VAR to avoid object conflict
This commit is contained in:
@@ -17,9 +17,9 @@ func TestOperators(t *testing.T) {
|
||||
#var S2: string = "World"
|
||||
|
||||
+Obj = {
|
||||
Math = $A + $B
|
||||
Precedence = $A + $B * 2
|
||||
Concat = $S1 .. " " .. $S2
|
||||
Math = @A + @B
|
||||
Precedence = @A + @B * 2
|
||||
Concat = @S1 .. " " .. @S2
|
||||
}
|
||||
`
|
||||
// Check Parser
|
||||
|
||||
Reference in New Issue
Block a user