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 <2.4 to Nomsu 2.4
|
2018-11-11 15:50:46 -08:00
|
|
|
|
2019-01-10 16:33:37 -08:00
|
|
|
use "compatibility/compatibility"
|
2018-07-20 17:56:06 -07:00
|
|
|
|
2018-11-08 15:23:22 -08:00
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
2018-12-14 20:21:03 -08:00
|
|
|
upgrade $tree to "2.4" as:
|
|
|
|
unless ($tree is "Action" syntax tree): return
|
|
|
|
if $tree.stub is:
|
2018-11-11 15:05:18 -08:00
|
|
|
"when" "if":
|
2019-03-20 15:55:57 -07:00
|
|
|
if (#$tree == 3):
|
2019-03-14 16:30:43 -07:00
|
|
|
return $tree
|
2018-12-14 20:21:03 -08:00
|
|
|
$conditions = []
|
|
|
|
$new_lines = []
|
2018-12-30 19:04:34 -08:00
|
|
|
$body =
|
2019-03-22 14:25:18 -07:00
|
|
|
$tree.2 if ($tree.2 is "Block" syntax tree) else [$tree.2]
|
2018-12-30 19:04:34 -08:00
|
|
|
|
2018-12-14 20:21:03 -08:00
|
|
|
for $line in $body:
|
2018-11-09 17:02:39 -08:00
|
|
|
when:
|
2018-12-30 19:04:34 -08:00
|
|
|
(not ($line is "Action" syntax tree)):
|
|
|
|
$new_lines, add $line
|
|
|
|
|
2019-01-16 21:33:02 -08:00
|
|
|
($line.stub == "*"):
|
2019-03-20 15:55:57 -07:00
|
|
|
if (#$line == 2):
|
2018-12-30 19:04:34 -08:00
|
|
|
$conditions, add $line.2
|
2018-11-09 17:02:39 -08:00
|
|
|
..else:
|
2018-12-30 19:04:34 -08:00
|
|
|
$new_lines, add $line
|
2018-11-11 15:50:46 -08:00
|
|
|
|
2018-12-14 20:21:03 -08:00
|
|
|
($line.stub == "* else"):
|
2019-03-22 14:25:18 -07:00
|
|
|
$new_lines, add \(else \$line.3)
|
2018-11-11 15:50:46 -08:00
|
|
|
|
2018-07-20 17:56:06 -07:00
|
|
|
else:
|
2018-12-30 19:04:34 -08:00
|
|
|
$conditions, add $line.2
|
2018-12-14 20:21:03 -08:00
|
|
|
$action = $line.3
|
|
|
|
unless ($action is "Block" syntax tree):
|
|
|
|
$action = (=lua "SyntaxTree{type='Block', source=\$action.source, \$action}")
|
2018-12-30 19:04:34 -08:00
|
|
|
$conditions, add $action
|
|
|
|
$new_lines, add
|
2018-12-30 23:58:47 -08:00
|
|
|
=lua ("
|
|
|
|
SyntaxTree{type='Action', source=\$conditions[1].source, unpack(\$conditions)}
|
|
|
|
")
|
2018-12-14 20:21:03 -08:00
|
|
|
$conditions = []
|
2018-07-20 20:27:15 -07:00
|
|
|
|
2019-03-20 16:41:44 -07:00
|
|
|
return \(when \("Block" tree from $tree.2.source with (unpack $new_lines)))
|
2018-07-20 20:27:15 -07:00
|
|
|
|
2018-11-11 15:05:18 -08:00
|
|
|
"if 1 is ?" "if 1 = ?":
|
2018-12-14 20:21:03 -08:00
|
|
|
$values = []
|
|
|
|
$new_lines = []
|
2018-12-30 19:04:34 -08:00
|
|
|
$body =
|
2019-03-22 14:25:18 -07:00
|
|
|
$tree.5 if ($tree.5 is "Block" syntax tree) else [$tree.5]
|
2018-12-30 19:04:34 -08:00
|
|
|
|
2018-12-14 20:21:03 -08:00
|
|
|
for $line in $body:
|
2018-11-09 17:02:39 -08:00
|
|
|
when:
|
2018-12-30 19:04:34 -08:00
|
|
|
(not ($line is "Action" syntax tree)):
|
|
|
|
$new_lines, add $line
|
|
|
|
|
2019-01-16 21:33:02 -08:00
|
|
|
($line.stub == "*"):
|
2019-03-20 15:55:57 -07:00
|
|
|
if (#$line == 2):
|
2018-12-30 19:04:34 -08:00
|
|
|
$values, add $line.2
|
2018-11-09 17:02:39 -08:00
|
|
|
..else:
|
2018-12-30 19:04:34 -08:00
|
|
|
$new_lines, add $line
|
2018-11-11 15:50:46 -08:00
|
|
|
|
2018-12-14 20:21:03 -08:00
|
|
|
($line.stub == "* else"):
|
2019-03-22 14:25:18 -07:00
|
|
|
$new_lines, add \(else \$line.3)
|
2018-11-11 15:50:46 -08:00
|
|
|
|
2018-07-20 17:56:06 -07:00
|
|
|
else:
|
2018-12-30 19:04:34 -08:00
|
|
|
$values, add $line.2
|
2018-12-14 20:21:03 -08:00
|
|
|
$action = $line.3
|
2019-03-20 15:55:57 -07:00
|
|
|
unless ($action is "Block" syntax tree):
|
|
|
|
$action = ("Block" tree with $action)
|
2018-12-30 19:04:34 -08:00
|
|
|
$values, add $action
|
2018-12-30 23:58:47 -08:00
|
|
|
$new_lines, add
|
|
|
|
=lua "SyntaxTree{type='Action', source=\$values[1].source, unpack(\$values)}"
|
2018-12-14 20:21:03 -08:00
|
|
|
$values = []
|
2018-07-20 20:27:15 -07:00
|
|
|
|
2018-12-30 19:04:34 -08:00
|
|
|
return
|
2019-03-20 16:41:44 -07:00
|
|
|
\(
|
2019-03-22 14:25:18 -07:00
|
|
|
if \($tree.2) is
|
2019-03-20 16:41:44 -07:00
|
|
|
\("Block" tree from $tree.5.source with (unpack $new_lines))
|
2019-03-22 14:25:18 -07:00
|
|
|
)
|