diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2019-01-27 02:05:02 -0800 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2019-01-27 02:05:02 -0800 |
| commit | b77b953fa3c0f289f91d798a6872e040b6f40f64 (patch) | |
| tree | 327b1a7e6ec2d66e56d68f9aa009f0fd0b6965f0 /lib | |
| parent | e6725247636f4245d53efd4f0638678612efd604 (diff) | |
Removed namespace colliding of `* is not *` (using the isinstance
version, not the != version)
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/core/operators.nom | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/core/operators.nom b/lib/core/operators.nom index 4bdb5bc..dc4745f 100644 --- a/lib/core/operators.nom +++ b/lib/core/operators.nom @@ -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))" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
