aboutsummaryrefslogtreecommitdiff
path: root/compatibility/4.8.10.nom
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2019-01-14 17:14:34 -0800
committerBruce Hill <bruce@bruce-hill.com>2019-01-14 17:14:57 -0800
commitddef8be3df626d63f6e575d4c1416295a22371ad (patch)
tree78af9584447b085f06d6412d2cc20137a460848b /compatibility/4.8.10.nom
parent9fceff7e785bb234971b443809eef3da9051c598 (diff)
Moved compatibility to lib/ and fixed path searching for .peg files.
Diffstat (limited to 'compatibility/4.8.10.nom')
-rw-r--r--compatibility/4.8.10.nom68
1 files changed, 0 insertions, 68 deletions
diff --git a/compatibility/4.8.10.nom b/compatibility/4.8.10.nom
deleted file mode 100644
index 250dc4a..0000000
--- a/compatibility/4.8.10.nom
+++ /dev/null
@@ -1,68 +0,0 @@
-#!/usr/bin/env nomsu -V6.14
-#
- This file defines upgrades from Nomsu <4.8.10 to 4.8.10 (renaming "action" -> "means")
-use "compatibility/compatibility"
-
-~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-
-upgrade action "local action" to "4.8.10" via
- for ($tree $end_version):
- $spec = $tree.3
- $body = $tree.4
- if $spec.type is:
- "List":
- if ((size of $spec) == 1):
- return \($spec.1 means $body)
- ..else:
- return \($spec all mean $body)
-
- else:
- return \($spec means $body)
-
-upgrade action "action" to "4.8.10" via
- for ($tree $end_version):
- $spec = $tree.2
- $body = $tree.3
- if $body:
- if $spec.type is:
- "List":
- if ((size of $spec) == 1):
- return \(externally $spec.1 means $body)
- ..else:
- return \(externally $spec all mean $body)
-
- else:
- return \(externally $spec means $body)
- ..else:
- return \($spec's meaning)
-
-upgrade action "compile 1 to" to "4.8.10" via
- for ($tree $end_version):
- $spec = $tree.2
- $body = $tree.4
- if $spec.type is:
- "List":
- if ((size of $spec) == 1):
- return \($spec.1 compiles to $body)
- ..else:
- return \($spec all compile to $body)
-
- else:
- return \($spec compiles to $body)
-
-upgrade action "parse 1 as" to "4.8.10" via
- for ($tree $end_version):
- $spec = $tree.2
- $body = $tree.4
- if $spec.type is:
- "List":
- if ((size of $spec) == 1):
- return \($spec.1 parses as $body)
- ..else:
- return \($spec all parse as $body)
-
- else:
- 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))