2019-03-20 15:55:57 -07:00
|
|
|
#!/usr/bin/env nomsu -V7.0.0
|
|
|
|
###
|
2018-07-23 15:56:59 -07:00
|
|
|
This file defines upgrades from Nomsu 1 to Nomsu 2
|
2018-11-11 15:50:46 -08:00
|
|
|
|
2019-01-10 16:33:37 -08:00
|
|
|
use "compatibility/compatibility"
|
2018-07-17 23:08:13 -07:00
|
|
|
|
2018-11-08 15:23:22 -08:00
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
2018-12-14 20:21:03 -08:00
|
|
|
upgrade $tree to "2" as:
|
|
|
|
unless ($tree is "Action" syntax tree): return
|
2019-01-30 23:05:44 -08:00
|
|
|
if ($tree.stub == "if 1 2 else"):
|
2019-03-22 14:25:18 -07:00
|
|
|
$true_body = $tree.3
|
2018-12-14 20:21:03 -08:00
|
|
|
unless ($true_body is "Block" syntax tree):
|
2019-03-20 15:55:57 -07:00
|
|
|
$true_body = ("Block" tree with $true_body)
|
2019-03-22 14:25:18 -07:00
|
|
|
$false_body = $tree.5
|
2018-12-14 20:21:03 -08:00
|
|
|
unless ($false_body is "Block" syntax tree):
|
|
|
|
$false_body = (=lua "Block(\$false_body.source, \$false_body)")
|
2019-03-22 14:25:18 -07:00
|
|
|
return \(if \($tree.2) \$true_body else \$false_body)
|
2018-07-17 23:08:13 -07:00
|
|
|
|
2018-12-30 19:04:34 -08:00
|
|
|
$need_blocks = [
|
2018-11-11 15:50:46 -08:00
|
|
|
"if", "unless", "for 1 in", "for 1 = 2 in", "repeat while 1", "repeat 1 times"
|
|
|
|
"repeat", "repeat until 1", "for 1 in 2 to 3 by", "for 1 in 2 to 3 via"
|
2019-01-15 15:53:31 -08:00
|
|
|
"for 1 in 2 to", "for 1 2 in", "do", "for 1 in recursive", "test", "with"
|
|
|
|
"result of", "when"
|
2018-12-30 19:04:34 -08:00
|
|
|
]
|
2018-07-20 20:27:15 -07:00
|
|
|
|
2018-12-14 20:21:03 -08:00
|
|
|
for $n in $need_blocks:
|
2019-01-16 21:33:02 -08:00
|
|
|
if ($tree.stub == $n):
|
2019-03-22 14:25:18 -07:00
|
|
|
$bits = [: for $ in $tree: add ($ if ($ is syntax tree) else $)]
|
2018-12-30 19:04:34 -08:00
|
|
|
unless (($bits, last) is "Block" syntax tree):
|
|
|
|
$body = ($bits, last)
|
2019-03-14 16:30:43 -07:00
|
|
|
$bits.(#$bits) = (=lua "SyntaxTree{type='Block', source=\$body.source, \$body}")
|
2019-03-22 14:25:18 -07:00
|
|
|
return (=lua "SyntaxTree{type='Action', source=\$tree.source, unpack(\$bits)}")
|