nomsu/lib/compatibility/7.nom

51 lines
1.7 KiB
Plaintext
Raw Normal View History

2019-02-06 14:34:10 -08:00
#!/usr/bin/env nomsu -V7
###
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 =
"Action" tree from $tree.source with ("Text" tree with $tree.1.type) "tree" "with"
for $tok in $tree.1:
if ($tok is "Text"): $t, add ("Text" tree with $tok)
..else: $t, add $tok
return $t
upgrade action "Nomsu version" to "7" via ->(`$(NOMSU VERSION))
upgrade action [
"Nomsu syntax version", "Nomsu compiler version", "core version", "lib version"
2019-03-13 20:56:28 -07:00
] to "7" via
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.
")