From b77b953fa3c0f289f91d798a6872e040b6f40f64 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Sun, 27 Jan 2019 02:05:02 -0800 Subject: [PATCH] Removed namespace colliding of `* is not *` (using the isinstance version, not the != version) --- lib/core/operators.nom | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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))" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~