nomsu/compatibility/2.4.nom

71 lines
3.1 KiB
Plaintext
Raw Normal View History

2018-12-14 20:21:03 -08:00
#!/usr/bin/env nomsu -V5.12.12.8
2018-07-23 15:56:59 -07:00
#
This file defines upgrades from Nomsu <2.4 to Nomsu 2.4
2018-07-20 17:56:06 -07:00
use "compatibility/compatibility.nom"
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
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:
"when" "if":
2018-12-14 20:21:03 -08:00
if ((size of $tree) == 3): return $tree
$conditions = []
$new_lines = []
$body = (($tree.2 upgraded) if ($tree.2 is "Block" syntax tree) else [$tree.2 upgraded])
for $line in $body:
when:
2018-12-14 20:21:03 -08:00
(not ($line is "Action" syntax tree)): $new_lines|add $line
($line.stub is "*"):
if ((size of $line) == 2):
$conditions|add $line.2
..else:
2018-12-14 20:21:03 -08:00
$new_lines|add $line
2018-12-14 20:21:03 -08:00
($line.stub == "* else"):
$new_lines|add (\(else $block) with vars {block: $line.3})
2018-07-20 17:56:06 -07:00
else:
2018-12-14 20:21:03 -08:00
$conditions|add $line.2
$action = $line.3
unless ($action is "Block" syntax tree):
$action = (=lua "SyntaxTree{type='Block', source=\$action.source, \$action}")
$conditions|add $action
$new_lines|
add (=lua "SyntaxTree{type='Action', source=\$conditions[1].source, unpack(\$conditions)}")
$conditions = []
return (..)
2018-12-14 20:21:03 -08:00
\(when $body) with vars {..}
body: =lua "SyntaxTree{type='Block', source=\$tree[2].source, unpack(\$new_lines)}"
"if 1 is ?" "if 1 = ?":
2018-12-14 20:21:03 -08:00
$values = []
$new_lines = []
$body = (($tree.5 upgraded) if ($tree.5 is "Block" syntax tree) else [$tree.5 upgraded])
for $line in $body:
when:
2018-12-14 20:21:03 -08:00
(not ($line is "Action" syntax tree)): $new_lines|add $line
($line.stub is "*"):
if ((size of $line) == 2):
$values|add $line.2
..else:
2018-12-14 20:21:03 -08:00
$new_lines|add $line
2018-12-14 20:21:03 -08:00
($line.stub == "* else"):
$new_lines|add (\(else $block) with vars {block: $line.3})
2018-07-20 17:56:06 -07:00
else:
2018-12-14 20:21:03 -08:00
$values|add $line.2
$action = $line.3
unless ($action is "Block" syntax tree): $action = \(: $action)
$values|add $action
$new_lines|
add (=lua "SyntaxTree{type='Action', source=\$values[1].source, unpack(\$values)}")
$values = []
return (..)
2018-12-14 20:21:03 -08:00
\(if $var is $body) with vars {..}
var: $tree.2 upgraded, body: =lua "SyntaxTree{type='Block', source=\$tree[5].source, unpack(\$new_lines)}"