diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2019-01-16 21:33:02 -0800 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2019-01-16 21:33:30 -0800 |
| commit | 520acd39795766354fc44c6e15f5f33f255ca33a (patch) | |
| tree | a4a538dd72ab9a1e229ec3d44beb86b80cfbe7ba /lib/core/operators.nom | |
| parent | 517d661368611fe753e9fd97a7adb2e45fca745e (diff) | |
Overhauling OO-API a little to make it more minimalistic.
Diffstat (limited to 'lib/core/operators.nom')
| -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 b0f37f0..c2e6b57 100644 --- a/lib/core/operators.nom +++ b/lib/core/operators.nom @@ -14,7 +14,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))" ($x >= $y) compiles to "(\($x as lua expr) >= \($y as lua expr))" -[$a is $b, $a == $b] all compile to "(\($a as lua expr) == \($b 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 as lua expr) ~= \($b as lua expr))" |
