2018-12-14 20:21:03 -08:00
|
|
|
#!/usr/bin/env nomsu -V5.12.12.8
|
2018-11-11 16:28:09 -08:00
|
|
|
#
|
|
|
|
This file defines upgrades from Nomsu <4.11 to Nomsu 4.11
|
2018-11-17 14:38:05 -08:00
|
|
|
(overhaul of function literals, deleting (if all of ...), etc. shorthand)
|
2018-11-11 16:28:09 -08:00
|
|
|
|
|
|
|
use "compatibility/compatibility.nom"
|
|
|
|
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
2018-11-17 14:38:05 -08:00
|
|
|
# Overhaul of function literals:
|
|
|
|
upgrade action "call 1 with" to "4.11" via (..)
|
2018-12-14 20:21:03 -08:00
|
|
|
for ($tree $end_version):
|
|
|
|
$tree2 = {type: "Action", source: $tree.source, 1: $tree.2}
|
|
|
|
for $arg in $tree.4 at $i:
|
|
|
|
$tree2.($i + 1) = $arg
|
|
|
|
return (SyntaxTree $tree2)
|
|
|
|
upgrade action (-> $yield_value) to "4.11" as (yield $yield_value)
|
2018-11-17 14:38:05 -08:00
|
|
|
|
|
|
|
# Replace set {%x:1, %y:2} with [%x, %y] = [1, 2]
|
|
|
|
upgrade action "set" to "4.11" via (..)
|
2018-12-14 20:21:03 -08:00
|
|
|
for ($tree $end_version):
|
|
|
|
[$lhs, $rhs] = [\[], \[]]
|
|
|
|
$lhs.source = $tree.2.source
|
|
|
|
$rhs.source = $tree.2.source
|
|
|
|
for $entry in $tree.2 at $i:
|
|
|
|
$lhs.$i = $entry.1
|
|
|
|
$rhs.$i = $entry.2
|
|
|
|
return (SyntaxTree {type: "Action", source: $tree.source, 1: $lhs, 2: "=", 3: $rhs})
|
2018-11-17 14:38:05 -08:00
|
|
|
|
2018-11-20 14:52:59 -08:00
|
|
|
upgrade action "1 with 2 ~>" to "4.11" via (..)
|
2018-12-14 20:21:03 -08:00
|
|
|
for $tree:
|
|
|
|
compile error at $tree "This method has been deprecated." \
|
|
|
|
.."Perhaps this could be use %tree::map instead."
|
2018-11-20 14:52:59 -08:00
|
|
|
|
2018-11-19 17:21:08 -08:00
|
|
|
# Changing filesystem API:
|
2018-12-14 20:21:03 -08:00
|
|
|
upgrade action (for file $f in $path $body) to "4.11" as (..)
|
|
|
|
for $f in (files for $path) $body
|
2018-11-19 17:37:37 -08:00
|
|
|
|
2018-12-14 20:21:03 -08:00
|
|
|
upgrade action ($expr for file $f in $path) to "4.11" as [..]
|
|
|
|
: for $f in (files for $path): add $expr
|
2018-11-19 17:37:37 -08:00
|
|
|
|
2018-12-14 20:21:03 -08:00
|
|
|
upgrade action (line $n in $text) to "4.11" as ($text|line $n)
|
|
|
|
upgrade action (line number of $pos in $text) to "4.11" as (..)
|
|
|
|
$text|line number at $pos
|
2018-11-19 17:21:08 -08:00
|
|
|
|
2018-11-19 17:44:46 -08:00
|
|
|
# Deduplicating goto labels:
|
2018-12-14 20:21:03 -08:00
|
|
|
upgrade action [=== $label ===, *** $label ***] to "4.11" as (--- $label ---)
|
|
|
|
upgrade action [===stop $label ===, ***stop $label ***] to "4.11" as (..)
|
|
|
|
---stop $label ---
|
2018-11-26 16:28:06 -08:00
|
|
|
|
2018-12-14 20:21:03 -08:00
|
|
|
upgrade action [===next $label ===, ***next $label ***] to "4.11" as (..)
|
|
|
|
---next $label ---
|
2018-11-19 17:44:46 -08:00
|
|
|
|
2018-11-17 14:38:05 -08:00
|
|
|
# Deprecating shorthand functions:
|
2018-12-14 20:21:03 -08:00
|
|
|
upgrade action [if all of $items $body, if all of $items then $body] to "4.11" as (..)
|
|
|
|
if (all of $items) $body
|
2018-11-11 16:28:09 -08:00
|
|
|
|
2018-12-14 20:21:03 -08:00
|
|
|
upgrade action [unless all of $items $body, unless all of $items then $body] to \
|
|
|
|
.."4.11" as (if (not (all of $items)) $body)
|
2018-11-11 16:28:09 -08:00
|
|
|
|
2018-12-14 20:21:03 -08:00
|
|
|
upgrade action [if any of $items $body, if any of $items then $body] to "4.11" as (..)
|
|
|
|
if (any of $items) $body
|
2018-11-11 16:28:09 -08:00
|
|
|
|
2018-12-14 20:21:03 -08:00
|
|
|
upgrade action [unless any of $items $body, unless any of $items then $body] to \
|
|
|
|
.."4.11" as (if (not (any of $items)) $body)
|
2018-11-11 16:28:09 -08:00
|
|
|
|
2018-12-14 20:21:03 -08:00
|
|
|
upgrade action [if none of $items $body, if none of $items then $body] to "4.11" \
|
|
|
|
..as (if (not (any of $items)) $body)
|
2018-11-11 16:28:09 -08:00
|
|
|
|
2018-12-14 20:21:03 -08:00
|
|
|
upgrade action [unless none of $items $body, unless none of $items then $body] to \
|
|
|
|
.."4.11" as (if (any of $items) $body)
|
2018-11-11 16:28:09 -08:00
|
|
|
|
|
|
|
upgrade action [..]
|
2018-12-14 20:21:03 -08:00
|
|
|
if all of $items $body else $else, if all of $items then $body else $else
|
|
|
|
..to "4.11" as (if (all of $items) $body else $else)
|
2018-11-11 16:28:09 -08:00
|
|
|
|
|
|
|
upgrade action [..]
|
2018-12-14 20:21:03 -08:00
|
|
|
unless all of $items $body else $else, unless all of $items then $body else $else
|
|
|
|
..to "4.11" as (if (not (all of $items)) $body else $else)
|
2018-11-11 16:28:09 -08:00
|
|
|
|
|
|
|
upgrade action [..]
|
2018-12-14 20:21:03 -08:00
|
|
|
if any of $items $body else $else, if any of $items then $body else $else
|
|
|
|
..to "4.11" as (if (any of $items) $body else $else)
|
2018-11-11 16:28:09 -08:00
|
|
|
|
|
|
|
upgrade action [..]
|
2018-12-14 20:21:03 -08:00
|
|
|
unless any of $items $body else $else, unless any of $items then $body else $else
|
|
|
|
..to "4.11" as (if (not (any of $items)) $body else $else)
|
2018-11-11 16:28:09 -08:00
|
|
|
|
|
|
|
upgrade action [..]
|
2018-12-14 20:21:03 -08:00
|
|
|
if none of $items $body else $else, if none of $items then $body else $else
|
|
|
|
..to "4.11" as (if (not (any of $items)) $body else $else)
|
2018-11-11 16:28:09 -08:00
|
|
|
|
|
|
|
upgrade action [..]
|
2018-12-14 20:21:03 -08:00
|
|
|
unless none of $items $body else $else, unless none of $items then $body else $else
|
|
|
|
..to "4.11" as (if (any of $items) $body else $else)
|