diff --git a/lib/compatibility/7.nom b/lib/compatibility/7.nom index 5add70f..df60f21 100644 --- a/lib/compatibility/7.nom +++ b/lib/compatibility/7.nom @@ -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.