aboutsummaryrefslogtreecommitdiff
path: root/lib/compatibility/4.8.10.nom
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2019-03-20 16:41:44 -0700
committerBruce Hill <bruce@bruce-hill.com>2019-03-20 16:41:44 -0700
commit56e3a0c48ca2b641f77f7e73cce94dc3b133e142 (patch)
tree8efd996580e3bcd7845b39a0f7efe7bc0818a793 /lib/compatibility/4.8.10.nom
parentb44afbf417d602b7f018cd4d24ff07c2bc6d8b6e (diff)
Restoring `(foo) syntax to \(foo)
Diffstat (limited to 'lib/compatibility/4.8.10.nom')
-rw-r--r--lib/compatibility/4.8.10.nom29
1 files changed, 14 insertions, 15 deletions
diff --git a/lib/compatibility/4.8.10.nom b/lib/compatibility/4.8.10.nom
index ee60a61..5723b0d 100644
--- a/lib/compatibility/4.8.10.nom
+++ b/lib/compatibility/4.8.10.nom
@@ -1,5 +1,4 @@
#!/usr/bin/env nomsu -V7.0.0
-
###
This file defines upgrades from Nomsu <4.8.10 to 4.8.10 (renaming "action" -> "means")
use "compatibility/compatibility"
@@ -13,12 +12,12 @@ upgrade action "local action" to "4.8.10" via
if $spec.type is:
"List":
if (#$spec == 1):
- return `(`$spec.1 means `$body)
+ return \(\$spec.1 means \$body)
..else:
- return `(`$spec all mean `$body)
+ return \(\$spec all mean \$body)
else:
- return `(`$spec means `$body)
+ return \(\$spec means \$body)
upgrade action "action" to "4.8.10" via
for ($tree $end_version):
@@ -28,14 +27,14 @@ upgrade action "action" to "4.8.10" via
if $spec.type is:
"List":
if (#$spec == 1):
- return `(externally `$spec.1 means `$body)
+ return \(externally \$spec.1 means \$body)
..else:
- return `(externally `$spec all mean `$body)
+ return \(externally \$spec all mean \$body)
else:
- return `(externally `$spec means `$body)
+ return \(externally \$spec means \$body)
..else:
- return `((`$spec)'s meaning)
+ return \((\$spec)'s meaning)
upgrade action "compile 1 to" to "4.8.10" via
for ($tree $end_version):
@@ -44,12 +43,12 @@ upgrade action "compile 1 to" to "4.8.10" via
if $spec.type is:
"List":
if (#$spec == 1):
- return `(`$spec.1 compiles to `$body)
+ return \(\$spec.1 compiles to \$body)
..else:
- return `(`$spec all compile to `$body)
+ return \(\$spec all compile to \$body)
else:
- return `(`$spec compiles to `$body)
+ return \(\$spec compiles to \$body)
upgrade action "parse 1 as" to "4.8.10" via
for ($tree $end_version):
@@ -58,12 +57,12 @@ upgrade action "parse 1 as" to "4.8.10" via
if $spec.type is:
"List":
if (#$spec == 1):
- return `(`$spec.1 parses as `$body)
+ return \(\$spec.1 parses as \$body)
..else:
- return `(`$spec all parse as `$body)
+ return \(\$spec all parse as \$body)
else:
- return `(`$spec parse as `$body)
+ return \(\$spec parse as \$body)
upgrade action (compile as $) to "4.8.10" as (what $ compiles to)
-upgrade action (remove action $) to "4.8.10" as (($'s meaning) = (nil))
+upgrade action (remove action $) to "4.8.10" as (($'s meaning) = (nil)) \ No newline at end of file