Removed namespace colliding of * is not * (using the isinstance

version, not the != version)
This commit is contained in:
Bruce Hill 2019-01-27 02:05:02 -08:00
parent e672524763
commit b77b953fa3

View File

@ -15,7 +15,7 @@ test:
($x <= $y) compiles to "(\($x as lua expr) <= \($y as lua expr))"
($x >= $y) compiles to "(\($x as lua expr) >= \($y as lua expr))"
($a == $b) compiles to "(\($a as lua expr) == \($b as lua expr))"
[$a isn't $b, $a is not $b, $a not= $b, $a != $b] all compile to
[$a not= $b, $a != $b] all compile to
"(\($a as lua expr) ~= \($b as lua expr))"
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~