2019-03-20 15:55:57 -07:00
|
|
|
#!/usr/bin/env nomsu -V7.0.0
|
2019-02-06 15:33:10 -08:00
|
|
|
###
|
2019-02-06 14:34:10 -08:00
|
|
|
This file defines upgrades from Nomsu <7 to 7
|
|
|
|
|
|
|
|
use "compatibility/compatibility"
|
|
|
|
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
upgrade action ($tree with $t -> $replacement) to "7" as
|
|
|
|
$tree, with ($t -> $replacement)
|
|
|
|
|
|
|
|
upgrade action [
|
|
|
|
tree $tree with vars $replacements, $tree with vars $replacements
|
|
|
|
] to "7" as ($tree, with $replacements)
|
|
|
|
|
|
|
|
upgrade action ($tree has subtree $match_tree) to "7" as
|
|
|
|
$tree, contains $match_tree
|
|
|
|
|
2019-03-13 20:56:28 -07:00
|
|
|
upgrade action (for $var in $iterable at $i $body) to "7" as
|
|
|
|
for ($i = $var) in $iterable $body
|
|
|
|
|
|
|
|
upgrade action (for $k = $v in $iterable $body) to "7" as
|
|
|
|
for ($k = $v) in $iterable $body
|
|
|
|
|
|
|
|
upgrade action [
|
|
|
|
for $var in $start to $stop by $step $body
|
|
|
|
for $var in $start to $stop via $step $body
|
|
|
|
] to "7" as (for $var in ($start to $stop by $step) $body)
|
|
|
|
|
|
|
|
upgrade action (for $var in $start to $stop $body) to "7" as
|
|
|
|
for $var in ($start to $stop) $body
|
|
|
|
|
2019-02-06 14:34:10 -08:00
|
|
|
upgrade $tree to "7" as:
|
|
|
|
if ($tree.type == "EscapedNomsu"):
|
2019-02-06 16:07:00 -08:00
|
|
|
$t =
|
2019-03-20 15:55:57 -07:00
|
|
|
"Action" tree from $tree.source with ("Text" tree with $tree.1.type) "tree"
|
|
|
|
"with"
|
|
|
|
|
2019-02-06 16:07:00 -08:00
|
|
|
for $tok in $tree.1:
|
2019-03-20 15:55:57 -07:00
|
|
|
if ($tok is "Text"):
|
|
|
|
$t, add ("Text" tree with $tok)
|
|
|
|
..else:
|
|
|
|
$t, add $tok
|
|
|
|
|
2019-02-06 16:07:00 -08:00
|
|
|
return $t
|
2019-02-06 15:33:10 -08:00
|
|
|
|
2019-03-20 16:41:44 -07:00
|
|
|
upgrade action "Nomsu version" to "7" via ->(\$(NOMSU VERSION))
|
2019-02-06 15:33:10 -08:00
|
|
|
upgrade action [
|
|
|
|
"Nomsu syntax version", "Nomsu compiler version", "core version", "lib version"
|
2019-03-13 20:56:28 -07:00
|
|
|
] to "7" via
|
2019-02-06 15:33:10 -08:00
|
|
|
for $:
|
|
|
|
at $.source fail ("
|
|
|
|
Deprecation error: Actions for accessing specific parts of the version number have been deprecated.
|
|
|
|
Hint: Use $(NOMSU VERSION).1, etc. instead.
|
2019-03-20 15:55:57 -07:00
|
|
|
")
|