2018-07-18 01:27:56 -07:00
|
|
|
#!/usr/bin/env nomsu -V2.3.4.3
|
2018-07-17 23:08:13 -07:00
|
|
|
use "core"
|
|
|
|
use "compatibility/compatibility.nom"
|
|
|
|
|
|
|
|
upgrade %tree to "2" as:
|
|
|
|
unless (%tree is "Action" syntax tree): return
|
2018-07-18 17:55:29 -07:00
|
|
|
if (%tree.stub is "if % % else %"):
|
2018-07-18 14:54:43 -07:00
|
|
|
%true_body = (%tree.3 upgraded)
|
2018-07-17 23:08:13 -07:00
|
|
|
unless (%true_body is "Block" syntax tree):
|
2018-07-18 01:27:56 -07:00
|
|
|
%true_body = (=lua "Block(\%true_body.source, \%true_body)")
|
2018-07-18 14:54:43 -07:00
|
|
|
%false_body = (%tree.5 upgraded)
|
2018-07-17 23:08:13 -07:00
|
|
|
unless (%false_body is "Block" syntax tree):
|
2018-07-18 01:27:56 -07:00
|
|
|
%false_body = (=lua "Block(\%false_body.source, \%false_body)")
|
2018-07-17 23:08:13 -07:00
|
|
|
return (..)
|
|
|
|
\(if %cond %true_body else %false_body)
|
|
|
|
..with vars {..}
|
2018-07-18 14:54:43 -07:00
|
|
|
cond:%tree.2 upgraded, true_body:%true_body, false_body:%false_body
|
2018-07-17 23:08:13 -07:00
|
|
|
|
2018-07-18 01:27:56 -07:00
|
|
|
%need_blocks = [..]
|
2018-07-17 23:08:13 -07:00
|
|
|
"if % %", "unless % %", "for % in % %", "for % = % in % %", "repeat while % %"
|
|
|
|
"repeat % times %", "repeat %", "repeat until % %", "for % in % to % by % %",
|
|
|
|
"for % in % to % via % %", "for % in % to % %", "for % % in % %", "do %"
|
|
|
|
"for % in recursive % %", "test %", "with % %", "result of %"
|
|
|
|
for %n in %need_blocks:
|
2018-07-18 17:55:29 -07:00
|
|
|
if (%tree.stub is %n):
|
2018-07-18 14:54:43 -07:00
|
|
|
%bits = (((% upgraded) if (% is syntax tree) else %) for % in %tree)
|
2018-07-17 23:08:13 -07:00
|
|
|
unless ((last in %bits) is "Block" syntax tree):
|
2018-07-18 01:27:56 -07:00
|
|
|
%body = (last in %bits)
|
|
|
|
%bits.(length of %bits) = (=lua "Block(\%body.source, \%body)")
|
2018-07-17 23:08:13 -07:00
|
|
|
return (=lua "Action(\%tree.source, unpack(\%bits))")
|