Upgraded with new style for looping
This commit is contained in:
parent
cfe48fd2ed
commit
7f13819907
@ -16,6 +16,20 @@ upgrade action [
|
|||||||
upgrade action ($tree has subtree $match_tree) to "7" as
|
upgrade action ($tree has subtree $match_tree) to "7" as
|
||||||
$tree, contains $match_tree
|
$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:
|
upgrade $tree to "7" as:
|
||||||
if ($tree.type == "EscapedNomsu"):
|
if ($tree.type == "EscapedNomsu"):
|
||||||
$t =
|
$t =
|
||||||
@ -28,7 +42,7 @@ upgrade $tree to "7" as:
|
|||||||
upgrade action "Nomsu version" to "7" via ->(`$(NOMSU VERSION))
|
upgrade action "Nomsu version" to "7" via ->(`$(NOMSU VERSION))
|
||||||
upgrade action [
|
upgrade action [
|
||||||
"Nomsu syntax version", "Nomsu compiler version", "core version", "lib version"
|
"Nomsu syntax version", "Nomsu compiler version", "core version", "lib version"
|
||||||
] to "7" via:
|
] to "7" via
|
||||||
for $:
|
for $:
|
||||||
at $.source fail ("
|
at $.source fail ("
|
||||||
Deprecation error: Actions for accessing specific parts of the version number have been deprecated.
|
Deprecation error: Actions for accessing specific parts of the version number have been deprecated.
|
||||||
|
Loading…
Reference in New Issue
Block a user