Upgraded with new style for looping

This commit is contained in:
Bruce Hill 2019-03-13 20:56:28 -07:00
parent cfe48fd2ed
commit 7f13819907

View File

@ -16,6 +16,20 @@ upgrade action [
upgrade action ($tree has subtree $match_tree) to "7" as
$tree, contains $match_tree
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
upgrade $tree to "7" as:
if ($tree.type == "EscapedNomsu"):
$t =
@ -28,7 +42,7 @@ upgrade $tree to "7" as:
upgrade action "Nomsu version" to "7" via ->(`$(NOMSU VERSION))
upgrade action [
"Nomsu syntax version", "Nomsu compiler version", "core version", "lib version"
] to "7" via:
] to "7" via
for $:
at $.source fail ("
Deprecation error: Actions for accessing specific parts of the version number have been deprecated.