aboutsummaryrefslogtreecommitdiff
path: root/lib/compatibility/6.15.nom
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2019-01-16 21:33:02 -0800
committerBruce Hill <bruce@bruce-hill.com>2019-01-16 21:33:30 -0800
commit520acd39795766354fc44c6e15f5f33f255ca33a (patch)
treea4a538dd72ab9a1e229ec3d44beb86b80cfbe7ba /lib/compatibility/6.15.nom
parent517d661368611fe753e9fd97a7adb2e45fca745e (diff)
Overhauling OO-API a little to make it more minimalistic.
Diffstat (limited to 'lib/compatibility/6.15.nom')
-rw-r--r--lib/compatibility/6.15.nom8
1 files changed, 7 insertions, 1 deletions
diff --git a/lib/compatibility/6.15.nom b/lib/compatibility/6.15.nom
index 72d625d..ed892c1 100644
--- a/lib/compatibility/6.15.nom
+++ b/lib/compatibility/6.15.nom
@@ -13,7 +13,7 @@ upgrade action (externally $x all mean $y) to "6.15" as
upgrade action ($lists flattened) to "6.15" as [
: for $ in recursive $lists:
- if ($ is a "List"):
+ if ($ is "a List"):
for $child in $:
recurse $ on $child
..else: add $
@@ -24,3 +24,9 @@ upgrade action (compile error at $pos $msg $hint) to "6.15" as
Compile error: \$msg
Hint: \$hint
")
+
+upgrade action ($x is $y) to "6.15" as ($x == $y)
+upgrade action [$a isn't $b, $a is not $b, $a not= $b] to "6.15" as ($a != $b)
+upgrade action [$a is a $b, $a is an $b] to "6.15" as ($a is $b)
+upgrade action [$a isn't a $b, $a isn't an $b, $a is not a $b, $a is not an $b]
+..to "6.15" as ($a isn't $b)