Fixing the upgrade pipeline, plus some misc. fixes.

This commit is contained in:
Bruce Hill 2018-11-09 17:02:39 -08:00
parent 69aaea030e
commit fa3f598fc3
12 changed files with 70 additions and 62 deletions

View File

@ -9,23 +9,22 @@ use "compatibility/compatibility.nom"
upgrade %tree to "2.4" as: upgrade %tree to "2.4" as:
unless (%tree is "Action" syntax tree): return unless (%tree is "Action" syntax tree): return
if %tree.stub is: if %tree.stub is:
"when %": "when":
%conditions = [] %conditions = []
%new_lines = [] %new_lines = []
%body = (..) %body = (..)
(%tree.2 upgraded) if (%tree.2 is "Block" syntax tree) else [%tree.2 upgraded] (%tree.2 upgraded) if (%tree.2 is "Block" syntax tree) else [%tree.2 upgraded]
for %line in %body: for %line in %body:
if: when:
(not (%line is syntax tree)):
compile error at %tree.source "WUT: %s"
(not (%line is "Action" syntax tree)): (not (%line is "Action" syntax tree)):
%new_lines::add %line %new_lines::add %line
(%line.stub is "* %"): (%line.stub is "*"):
if ((size of %line) == 2):
%conditions::add %line.2 %conditions::add %line.2
(%line.stub == "* else %"): ..else:
%new_lines::add (\(else %block) with vars {block:%line.3})
(%line.stub != "* % %"):
%new_lines::add %line %new_lines::add %line
(%line.stub == "* else"):
%new_lines::add (\(else %block) with vars {block:%line.3})
else: else:
%conditions::add %line.2 %conditions::add %line.2
%action = %line.3 %action = %line.3
@ -36,23 +35,24 @@ upgrade %tree to "2.4" as:
%conditions = [] %conditions = []
return (..) return (..)
\(if %body) with vars {body:=lua "Block(\%tree[2].source, unpack(\%new_lines))"} \(when %body) with vars {body:=lua "Block(\%tree[2].source, unpack(\%new_lines))"}
"when % is ? %" "when % = ? %": "when 1 is ?" "when 1 = ?":
%values = [] %values = []
%new_lines = [] %new_lines = []
%body = (..) %body = (..)
(%tree.5 upgraded) if (%tree.5 is "Block" syntax tree) else [%tree.5 upgraded] (%tree.5 upgraded) if (%tree.5 is "Block" syntax tree) else [%tree.5 upgraded]
for %line in %body: for %line in %body:
if: when:
(not (%line is "Action" syntax tree)): (not (%line is "Action" syntax tree)):
%new_lines::add %line %new_lines::add %line
(%line.stub is "* %"): (%line.stub is "*"):
if ((size of %line) == 2):
%values::add %line.2 %values::add %line.2
(%line.stub == "* else %"): ..else:
%new_lines::add (\(else %block) with vars {block:%line.3})
(%line.stub != "* % %"):
%new_lines::add %line %new_lines::add %line
(%line.stub == "* else"):
%new_lines::add (\(else %block) with vars {block:%line.3})
else: else:
%values::add %line.2 %values::add %line.2
%action = %line.3 %action = %line.3

View File

@ -8,7 +8,7 @@ use "compatibility/compatibility.nom"
upgrade %tree to "2" as: upgrade %tree to "2" as:
unless (%tree is "Action" syntax tree): return unless (%tree is "Action" syntax tree): return
if (%tree.stub is "if % % else %"): if (%tree.stub is "if 1 2 else"):
%true_body = (%tree.3 upgraded) %true_body = (%tree.3 upgraded)
unless (%true_body is "Block" syntax tree): unless (%true_body is "Block" syntax tree):
%true_body = \(: %true_body) %true_body = \(: %true_body)
@ -20,10 +20,10 @@ upgrade %tree to "2" as:
cond:%tree.2 upgraded, true_body:%true_body, false_body:%false_body cond:%tree.2 upgraded, true_body:%true_body, false_body:%false_body
%need_blocks = [..] %need_blocks = [..]
"if % %", "unless % %", "for % in % %", "for % = % in % %", "repeat while % %" "if", "unless", "for 1 in", "for 1 = 2 in", "repeat while 1"
"repeat % times %", "repeat %", "repeat until % %", "for % in % to % by % %" "repeat 1 times", "repeat", "repeat until 1", "for 1 in 2 to 3 by"
"for % in % to % via % %", "for % in % to % %", "for % % in % %" "for 1 in 2 to 3 via", "for 1 in 2 to", "for 1 2 in"
"do %", "for % in recursive % %", "test %", "with % %", "result of %" "do", "for 1 in recursive", "test", "with", "result of"
for %n in %need_blocks: for %n in %need_blocks:
if (%tree.stub is %n): if (%tree.stub is %n):

View File

@ -9,7 +9,7 @@ use "compatibility/compatibility.nom"
upgrade action (method %spec %body) to "3" as (my action %spec %body) upgrade action (method %spec %body) to "3" as (my action %spec %body)
upgrade action (me) to "3" as %me upgrade action (me) to "3" as %me
upgrade action (@) to "3" as %me upgrade action (@) to "3" as %me
upgrade action "as 1 2" to "3" via (..) upgrade action "as" to "3" via (..)
[] -> (..) [] -> (..)
barf "\ barf "\
..Object API has changed. Use (%obj::action 1 2) instead of (as %obj: action 1 2)" ..Object API has changed. Use (%obj::action ...) instead of (as %obj: action ...)"

View File

@ -5,7 +5,7 @@ use "compatibility/compatibility.nom"
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
upgrade action "local action 1 2" to "4.8.10" via (..) upgrade action "local action" to "4.8.10" via (..)
[%tree, %end_version] ->: [%tree, %end_version] ->:
%spec = %tree.3 %spec = %tree.3
%body = %tree.4 %body = %tree.4
@ -18,10 +18,11 @@ upgrade action "local action 1 2" to "4.8.10" via (..)
else: else:
return \(%spec means %body) return \(%spec means %body)
upgrade action "action 1 2" to "4.8.10" via (..) upgrade action "action" to "4.8.10" via (..)
[%tree, %end_version] ->: [%tree, %end_version] ->:
%spec = %tree.2 %spec = %tree.2
%body = %tree.3 %body = %tree.3
if %body:
if %spec.type is: if %spec.type is:
"List": "List":
if ((size of %spec) == 1): if ((size of %spec) == 1):
@ -30,8 +31,10 @@ upgrade action "action 1 2" to "4.8.10" via (..)
return \(externally %spec all mean %body) return \(externally %spec all mean %body)
else: else:
return \(externally %spec means %body) return \(externally %spec means %body)
..else:
return \(%spec's meaning)
upgrade action "compile 1 to 2" to "4.8.10" via (..) upgrade action "compile 1 to" to "4.8.10" via (..)
[%tree, %end_version] ->: [%tree, %end_version] ->:
%spec = %tree.2 %spec = %tree.2
%body = %tree.4 %body = %tree.4
@ -44,7 +47,7 @@ upgrade action "compile 1 to 2" to "4.8.10" via (..)
else: else:
return \(%spec compiles to %body) return \(%spec compiles to %body)
upgrade action "parse 1 as 2" to "4.8.10" via (..) upgrade action "parse 1 as" to "4.8.10" via (..)
[%tree, %end_version] ->: [%tree, %end_version] ->:
%spec = %tree.2 %spec = %tree.2
%body = %tree.4 %body = %tree.4
@ -58,5 +61,4 @@ upgrade action "parse 1 as 2" to "4.8.10" via (..)
return \(%spec parse as %body) return \(%spec parse as %body)
upgrade action (compile as %) to "4.8.10" as (what % compiles to) upgrade action (compile as %) to "4.8.10" as (what % compiles to)
upgrade action (action %) to "4.8.10" as (%'s meaning)
upgrade action (remove action %) to "4.8.10" as ((%'s meaning) = (nil)) upgrade action (remove action %) to "4.8.10" as ((%'s meaning) = (nil))

View File

@ -3,7 +3,7 @@
This file defines upgrades from Nomsu <4.9 to 4.9 This file defines upgrades from Nomsu <4.9 to 4.9
use "compatibility/compatibility.nom" use "compatibility/compatibility.nom"
upgrade action "local action 1 2" to "4.9" via (..) upgrade action "local action" to "4.9" via (..)
[%tree, %end_version] ->: [%tree, %end_version] ->:
%spec = %tree.3 %spec = %tree.3
%body = %tree.4 %body = %tree.4
@ -16,10 +16,11 @@ upgrade action "local action 1 2" to "4.9" via (..)
else: else:
return \(%spec means %body) return \(%spec means %body)
upgrade action "action 1 2" to "4.9" via (..) upgrade action "action" to "4.9" via (..)
[%tree, %end_version] ->: [%tree, %end_version] ->:
%spec = %tree.2 %spec = %tree.2
%body = %tree.3 %body = %tree.3
if %body:
if %spec.type is: if %spec.type is:
"List": "List":
if ((size of %spec) == 1): if ((size of %spec) == 1):
@ -28,8 +29,10 @@ upgrade action "action 1 2" to "4.9" via (..)
return \(externally %spec all mean %body) return \(externally %spec all mean %body)
else: else:
return \(externally %spec means %body) return \(externally %spec means %body)
..else:
return \(%spec's meaning)
upgrade action "compile 1 to 2" to "4.9" via (..) upgrade action "compile 1 to" to "4.9" via (..)
[%tree, %end_version] ->: [%tree, %end_version] ->:
%spec = %tree.2 %spec = %tree.2
%body = %tree.4 %body = %tree.4
@ -42,7 +45,7 @@ upgrade action "compile 1 to 2" to "4.9" via (..)
else: else:
return \(%spec compiles to %body) return \(%spec compiles to %body)
upgrade action "parse 1 as 2" to "4.9" via (..) upgrade action "parse 1 as" to "4.9" via (..)
[%tree, %end_version] ->: [%tree, %end_version] ->:
%spec = %tree.2 %spec = %tree.2
%body = %tree.4 %body = %tree.4
@ -56,6 +59,5 @@ upgrade action "parse 1 as 2" to "4.9" via (..)
return \(%spec parse as %body) return \(%spec parse as %body)
upgrade action (compile as %) to "4.9" as (what % compiles to) upgrade action (compile as %) to "4.9" as (what % compiles to)
upgrade action (action %) to "4.9" as (%'s meaning)
upgrade action (remove action %) to "4.9" as ((%'s meaning) = (nil)) upgrade action (remove action %) to "4.9" as ((%'s meaning) = (nil))
upgrade action (if %) to "4.9" as (when %) upgrade action (if %) to "4.9" as (when %)

View File

@ -36,7 +36,7 @@ externally (upgrade action %stub to %version via %upgrade_fn) means:
return %replacements.(%t.1) return %replacements.(%t.1)
..else: ..else:
external %needs_mangle = (yes) external %needs_mangle = (yes)
return "\(%t.type){source=\(quote "\(%t.source)"), \(quote (mangle %t.1))}" return "SyntaxTree{type=\(quote %t.type), source=\(quote "\(%t.source)"), \(quote (mangle %t.1))}"
(%t is syntax tree): (%t is syntax tree):
%args = [] %args = []
@ -46,7 +46,7 @@ externally (upgrade action %stub to %version via %upgrade_fn) means:
..else: ..else:
%args::add "\(%k)=\(make tree %v)" %args::add "\(%k)=\(make tree %v)"
return "\(%t.type){\(%args::joined with ", ")}" return "SyntaxTree{\(%args::joined with ", ")}"
else: return (quote %t) else: return (quote %t)

View File

@ -365,8 +365,10 @@ test:
# Return statement is wrapped in a do..end block because Lua is unhappy if you # Return statement is wrapped in a do..end block because Lua is unhappy if you
put code after a return statement, unless you wrap it in a block. put code after a return statement, unless you wrap it in a block.
(return) compiles to "do return; end" (return %return_value) compiles to "\
(return %return_value) compiles to "do return \(%return_value as lua expr) end" ..do return \(..)
=lua "\%return_value and \(%return_value as lua expr) or ''"
.. end"
# Literals # Literals
(yes) compiles to "true" (yes) compiles to "true"

View File

@ -36,7 +36,7 @@ test:
return (..) return (..)
Lua "\ Lua "\
..(function() ..(function()
local \(mangle "comprehension") = _List{} local \(mangle "comprehension") = List{}
for \(%match as lua expr) in (\(%text as lua expr)):gmatch(\(..) for \(%match as lua expr) in (\(%text as lua expr)):gmatch(\(..)
%patt as lua expr %patt as lua expr
..) do ..) do

View File

@ -99,7 +99,7 @@ test:
class.__index = class class.__index = class
class.class = class class.class = class
class.__tostring = function(inst) class.__tostring = function(inst)
return inst.name..getmetatable(_Dict{}).__tostring(inst) return inst.name..getmetatable(Dict{}).__tostring(inst)
end end
\(%class_body as lua) \(%class_body as lua)
for stub,metamethod in pairs(globals.METAMETHOD_MAP) do for stub,metamethod in pairs(globals.METAMETHOD_MAP) do

View File

@ -179,7 +179,7 @@ tree_to_inline_nomsu = function(tree)
elseif "FileChunks" == _exp_0 then elseif "FileChunks" == _exp_0 then
return error("Can't inline a FileChunks") return error("Can't inline a FileChunks")
elseif "Comment" == _exp_0 then elseif "Comment" == _exp_0 then
return nil return NomsuCode:from(tree.source)
elseif "Error" == _exp_0 then elseif "Error" == _exp_0 then
return error("Can't compile errors") return error("Can't compile errors")
else else
@ -397,7 +397,7 @@ tree_to_nomsu = function(tree)
nomsu:append(": ", value_nomsu) nomsu:append(": ", value_nomsu)
return nomsu return nomsu
elseif "Comment" == _exp_0 then elseif "Comment" == _exp_0 then
nomsu:append("#", tree[1]:gsub("\n", "\n ")) nomsu:append("#", (tree[1]:gsub("\n", "\n ")))
return nomsu return nomsu
elseif "IndexChain" == _exp_0 or "Number" == _exp_0 or "Var" == _exp_0 or "Comment" == _exp_0 or "Error" == _exp_0 then elseif "IndexChain" == _exp_0 or "Number" == _exp_0 or "Var" == _exp_0 or "Comment" == _exp_0 or "Error" == _exp_0 then
return tree_to_inline_nomsu(tree) return tree_to_inline_nomsu(tree)

View File

@ -137,7 +137,7 @@ tree_to_inline_nomsu = (tree)->
when "Comment" when "Comment"
-- TODO: implement? -- TODO: implement?
return nil return NomsuCode\from(tree.source)
when "Error" when "Error"
error("Can't compile errors") error("Can't compile errors")
@ -307,7 +307,7 @@ tree_to_nomsu = (tree)->
return nomsu return nomsu
when "Comment" when "Comment"
nomsu\append "#", tree[1]\gsub("\n", "\n ") nomsu\append "#", (tree[1]\gsub("\n", "\n "))
return nomsu return nomsu
when "IndexChain", "Number", "Var", "Comment", "Error" when "IndexChain", "Number", "Var", "Comment", "Error"

View File

@ -40,14 +40,16 @@ repeat:
for %path in %args: for %path in %args:
for file %filename in %path: for file %filename in %path:
unless (%filename::matches "%.nom$"): do next %filename unless (%filename::matches "%.nom$"): do next %filename
%tree = (parse (read file %filename) from %filename) %file = (read file %filename)
%code = (%NomsuCode::from (%Source %filename 1 (size of %file)) %file)
%tree = (%code parsed)
%uptree = (..) %uptree = (..)
%tree upgraded from (%start_version or (%tree.version or (Nomsu version))) to %version %tree upgraded from (%start_version or (%tree.version or (Nomsu version))) to %version
%text = "\ %text = "\
..#!/usr/bin/env nomsu -V\%version ..#!/usr/bin/env nomsu -V\%version
\(%uptree as nomsu)" \(%uptree as nomsu)"
if: when:
%inplace: %inplace:
say "Upgraded \%filename" say "Upgraded \%filename"
write %text to file %filename write %text to file %filename