2019-01-15 15:53:31 -08:00
|
|
|
#!/usr/bin/env nomsu -V6.15.13.8
|
2018-11-11 15:05:18 -08:00
|
|
|
#
|
|
|
|
This file defines upgrades from Nomsu <4.10.12.7 to 4.10.12.7
|
2019-01-10 16:33:37 -08:00
|
|
|
use "compatibility/compatibility"
|
2018-11-11 15:05:18 -08:00
|
|
|
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
2018-12-14 20:21:03 -08:00
|
|
|
upgrade action ($ as lua statements) to "4.10.12.7" as ($ as lua)
|
2018-12-30 19:04:34 -08:00
|
|
|
upgrade action ($ as lua return) to "4.10.12.7" as
|
2018-12-14 20:21:03 -08:00
|
|
|
=lua "\$.type == 'Block' and \($ as lua) or 'return '..\($ as lua expr)"
|
|
|
|
upgrade action (Lua value $) to "4.10.12.7" as (Lua $)
|
|
|
|
upgrade action ($e for $ in $items) to "4.10.12.7" as [: for $ in $items: add $e]
|
2018-12-30 23:58:47 -08:00
|
|
|
upgrade action ($e for $k = $v in $items) to "4.10.12.7" as
|
|
|
|
[: for $k = $v in $items: add $e]
|
2018-11-11 15:05:18 -08:00
|
|
|
|
2018-12-30 23:58:47 -08:00
|
|
|
upgrade action ($e for $i in $start to $stop) to "4.10.12.7" as
|
|
|
|
[: for $i in $start to $stop: add $e]
|
2018-11-11 15:50:46 -08:00
|
|
|
|
2018-12-30 23:58:47 -08:00
|
|
|
upgrade action ($e for $i in $start to $stop by $step) to "4.10.12.7" as
|
|
|
|
[: for $i in $start to $stop by $step: add $e]
|
2018-11-11 15:50:46 -08:00
|
|
|
|
2018-12-30 23:58:47 -08:00
|
|
|
upgrade action ($e for $i in $start to $stop via $step) to "4.10.12.7" as
|
|
|
|
[: for $i in $start to $stop by $step: add $e]
|
2018-11-11 15:50:46 -08:00
|
|
|
|
2019-01-01 17:15:51 -08:00
|
|
|
upgrade action ($k = $v for $ in $items) to "4.10.12.7" as {
|
|
|
|
: for $ in $items:
|
|
|
|
add $k = $v
|
|
|
|
}
|
2018-11-11 15:50:46 -08:00
|
|
|
|
2018-12-30 23:58:47 -08:00
|
|
|
upgrade action ($k = $v for $k0 = $v0 in $items) to "4.10.12.7" as
|
|
|
|
{: for $k0 = $v0 in $items: add $k = $v}
|
2018-11-11 15:50:46 -08:00
|
|
|
|
2018-12-30 23:58:47 -08:00
|
|
|
upgrade action ($k = $v for $i in $start to $stop) to "4.10.12.7" as
|
|
|
|
{: for $i in $start to $stop: add $k = $v}
|
2018-11-11 15:50:46 -08:00
|
|
|
|
2018-12-30 23:58:47 -08:00
|
|
|
upgrade action ($k = $v for $i in $start to $stop by $step) to "4.10.12.7" as
|
|
|
|
{: for $i in $start to $stop by $step: add $k = $v}
|
2018-11-11 15:50:46 -08:00
|
|
|
|
2018-12-30 23:58:47 -08:00
|
|
|
upgrade action ($k = $v for $i in $start to $stop via $step) to "4.10.12.7" as
|
|
|
|
{: for $i in $start to $stop by $step: add $k = $v}
|
2018-11-11 15:05:18 -08:00
|
|
|
|
2018-12-30 19:04:34 -08:00
|
|
|
upgrade action (parse $text from $filename) to "4.10.12.7" as
|
2018-12-14 20:21:03 -08:00
|
|
|
(NomsuCode from (Source $filename 1 (size of $text)) $text) parsed
|
2018-11-11 16:26:38 -08:00
|
|
|
|
2018-12-14 20:21:03 -08:00
|
|
|
upgrade action ($ as lua statements) to "4.10.12.7" as ($ as lua)
|
2018-12-30 19:04:34 -08:00
|
|
|
upgrade action (compile error at $pos $err hint $hint) to "4.10.12.7" as
|
2018-12-14 20:21:03 -08:00
|
|
|
compile error at $pos $err $hint
|
2018-11-11 15:05:18 -08:00
|
|
|
|
2018-11-17 14:38:05 -08:00
|
|
|
# In old code, it was okay to have imports at the top of the file in the same chunk,
|
|
|
|
but changes to the API now require imports to be in their own file chunk in order
|
|
|
|
for compilation to work properly.
|
2018-12-14 20:21:03 -08:00
|
|
|
upgrade $tree to "4.10.12.7" as:
|
|
|
|
if ($tree.type == "FileChunks"):
|
|
|
|
$first_chunk = $tree.1
|
|
|
|
$i = 1
|
|
|
|
$has_use = (no)
|
|
|
|
repeat while ($i <= (size of $first_chunk)):
|
|
|
|
if (($first_chunk.$i.type == "Action") and ($first_chunk.$i.stub == "use")):
|
|
|
|
$has_use = (yes)
|
2018-11-11 15:05:18 -08:00
|
|
|
..else:
|
2018-12-14 20:21:03 -08:00
|
|
|
if $has_use:
|
2018-11-19 17:37:37 -08:00
|
|
|
go to (insert chunk)
|
2018-12-14 20:21:03 -08:00
|
|
|
$i += 1
|
2018-11-17 14:38:05 -08:00
|
|
|
return
|
2018-11-19 17:44:46 -08:00
|
|
|
--- (insert chunk) ---
|
2018-12-30 19:04:34 -08:00
|
|
|
[$chunk1, $chunk2] = [
|
|
|
|
SyntaxTree {.type = "Block", .source = $first_chunk.source}
|
|
|
|
SyntaxTree {.type = "Block", .source = $first_chunk.source}
|
|
|
|
]
|
2018-11-19 17:37:37 -08:00
|
|
|
|
2018-12-14 20:21:03 -08:00
|
|
|
for $j in 1 to ($i - 1):
|
|
|
|
$chunk1.$j = $first_chunk.$j
|
2018-11-19 17:37:37 -08:00
|
|
|
|
2018-12-14 20:21:03 -08:00
|
|
|
for $j in $i to (size of $first_chunk):
|
|
|
|
$chunk2.($j - $i + 1) = $first_chunk.$j
|
2018-11-19 17:37:37 -08:00
|
|
|
|
2018-12-30 19:04:34 -08:00
|
|
|
$new_tree =
|
2019-01-14 16:30:17 -08:00
|
|
|
SyntaxTree {.source = $tree.source, .type = "FileChunks"} $chunk1 $chunk2
|
2018-11-19 17:37:37 -08:00
|
|
|
|
2018-12-14 20:21:03 -08:00
|
|
|
for $i in 2 to (size of $tree):
|
|
|
|
$new_tree.($i + 1) = $tree.$i
|
2018-11-19 17:37:37 -08:00
|
|
|
|
2018-12-14 20:21:03 -08:00
|
|
|
return $new_tree
|