Fixed obnoxious bug where List was getting used instead of a Dict,

causing havoc when .first and .pop were being accessed.
This commit is contained in:
Bruce Hill 2018-08-30 14:06:41 -07:00
parent 77ebe2fb2a
commit ab38fd19fa
6 changed files with 49 additions and 17 deletions

View File

@ -1,4 +1,4 @@
#!/usr/bin/env nomsu -V3.6.5.6 #!/usr/bin/env nomsu -V3.7
# #
This file defines upgrades from Nomsu <3.6 to 3.6 This file defines upgrades from Nomsu <3.6 to 3.6

View File

@ -1,10 +1,9 @@
#!/usr/bin/env nomsu -V3.6.5.6 #!/usr/bin/env nomsu -V3.7
# #
This file defines upgrades from Nomsu <3.7 to 3.7 This file defines upgrades from Nomsu <3.7 to 3.7
use "compatibility/compatibility.nom" use "compatibility/compatibility.nom"
# Indexing
upgrade action [%index st to last in %list] to "3.7" as (%list::%index st to last) upgrade action [%index st to last in %list] to "3.7" as (%list::%index st to last)
upgrade action [%index nd to last in %list] to "3.7" as (%list::%index nd to last) upgrade action [%index nd to last in %list] to "3.7" as (%list::%index nd to last)
upgrade action [%index rd to last in %list] to "3.7" as (%list::%index rd to last) upgrade action [%index rd to last in %list] to "3.7" as (%list::%index rd to last)

View File

@ -1,4 +1,4 @@
#!/usr/bin/env nomsu -V3.6.5.6 #!/usr/bin/env nomsu -V3.7
# #
This file contains code for defining ways to upgrade code between different versions This file contains code for defining ways to upgrade code between different versions
of Nomsu. of Nomsu.
@ -9,7 +9,7 @@ use "lib/os.nom"
action [upgrade to %version via %upgrade_fn]: action [upgrade to %version via %upgrade_fn]:
%UPGRADES.%version = %upgrade_fn %UPGRADES.%version = %upgrade_fn
%ACTION_UPGRADES = ({} with fallback % -> []) %ACTION_UPGRADES = ({} with fallback % -> {})
action [upgrade action %stub to %version via %upgrade_fn]: action [upgrade action %stub to %version via %upgrade_fn]:
%ACTION_UPGRADES.%version.%stub = %upgrade_fn %ACTION_UPGRADES.%version.%stub = %upgrade_fn
@ -18,43 +18,48 @@ parse [upgrade %tree to %version as %body] as (..)
compile [upgrade action %actions to %version as %body] to: compile [upgrade action %actions to %version as %body] to:
if (%actions is "Action" syntax tree): if (%actions is "Action" syntax tree):
%actions = [%actions] %actions = \[%actions]
%lua = (Lua "") %lua = (Lua "")
for %action in %actions: for %action in %actions:
%replacements = {} %replacements = {}
for %i in 1 to (length of %action): for %i in 1 to (size of %action):
if (%action.%i.type is "Var"): if (%action.%i.type is "Var"):
%replacements.(%action.%i.1) = "\(\%tree as lua id)[\%i]" %replacements.(%action.%i.1) = "\(\%tree as lua id)[\%i]"
%needs_mangle = (no)
local action [make tree %t]: local action [make tree %t]:
when: when:
(%t is "Var" syntax tree): (%t is "Var" syntax tree):
if %replacements.(%t.1): if %replacements.(%t.1):
return %replacements.(%t.1) return %replacements.(%t.1)
..else: ..else:
external %needs_mangle = (yes)
return ".." return ".."
\(%t.type){source=\(quote "\(%t.source)"), \(..) \(%t.type){source=\(quote "\(%t.source)"), \(..)
quote "\(%t.1) \000\(=lua "string.format('%X', __MANGLE_INDEX)")" quote "\(%t.1) \000\(=lua "string.format('%X', __MANGLE_INDEX)")"
..} ..}
(%t is syntax tree): (%t is syntax tree):
%args = ((make tree %) for % in %t) %args = []
%args::add "source=\(\%tree as lua id).source" for %k = %v in %t:
if %t.target: if ((type of %k) == "number"):
%args::add "target=\(make tree %t.target)" %args::add (make tree %v)
..else:
%args::add "\%k=\(make tree %v)"
return "\(%t.type){\(%args joined with ", ")}" return "\(%t.type){\(%args joined with ", ")}"
else: else:
return (quote "\%t") return (quote %t)
unless ("\%lua" == ""): %lua::append "\n" unless ("\%lua" == ""): %lua::append "\n"
%retval = (make tree %body)
%lua::append (..) %lua::append (..)
Lua ".." Lua ".."
A_upgrade_action_1_to_2_via_3(\(quote %action.stub), \(%version as lua expr), function(\(..) A_upgrade_action_1_to_2_via_3(\(quote %action.stub), \(%version as lua expr), function(\(..)
\%tree as lua id \%tree as lua id
..) ..)
__MANGLE_INDEX = (__MANGLE_INDEX or 0) + 1 \("__MANGLE_INDEX = (__MANGLE_INDEX or 0) + 1\n " if (%needs_mangle) else "")\
return \(make tree %body) ..return \%retval
end) end)
return %lua return %lua

View File

@ -70,6 +70,12 @@ for _index_0 = 1, #types do
unpack(self.comments) unpack(self.comments)
} }
end end
do
local init = replacement.__init
if init then
init(replacement)
end
end
end end
else else
replacement = { replacement = {
@ -102,6 +108,12 @@ for _index_0 = 1, #types do
return self return self
end end
replacement = setmetatable(replacement, getmetatable(self)) replacement = setmetatable(replacement, getmetatable(self))
do
local init = replacement.__init
if init then
init(replacement)
end
end
end end
return replacement return replacement
end end
@ -131,13 +143,24 @@ for _index_0 = 1, #types do
assert(Source:is_instance(t.source)) assert(Source:is_instance(t.source))
end end
setmetatable(t, self) setmetatable(t, self)
if t.__init then do
t:__init() local init = t.__init
if init then
init(t)
end
end end
return t return t
end end
}) })
end end
AST.Block.__init = function(self)
for _index_0 = 1, #self do
local a = self[_index_0]
if not AST.is_syntax_tree(a) then
require('ldt').breakpoint()
end
end
end
AST.Action.__init = function(self) AST.Action.__init = function(self)
local stub_bits = { } local stub_bits = { }
local arg_i = 1 local arg_i = 1

View File

@ -30,6 +30,7 @@ for name in *types
replacement = setmetatable {k,v for k,v in pairs replacement}, getmetatable(replacement) replacement = setmetatable {k,v for k,v in pairs replacement}, getmetatable(replacement)
replacement.source = @source replacement.source = @source
replacement.comments = {unpack(@comments)} if @comments replacement.comments = {unpack(@comments)} if @comments
if init = replacement.__init then init(replacement)
else else
replacement = {source:@source, comments:@comments and {unpack(@comments)}} replacement = {source:@source, comments:@comments and {unpack(@comments)}}
changes = false changes = false
@ -42,6 +43,7 @@ for name in *types
replacement[k] = r replacement[k] = r
return @ unless changes return @ unless changes
replacement = setmetatable replacement, getmetatable(@) replacement = setmetatable replacement, getmetatable(@)
if init = replacement.__init then init(replacement)
return replacement return replacement
.__eq = (other)=> .__eq = (other)=>
return false if type(@) != type(other) or #@ != #other or getmetatable(@) != getmetatable(other) return false if type(@) != type(other) or #@ != #other or getmetatable(@) != getmetatable(other)
@ -58,7 +60,7 @@ for name in *types
else else
assert(Source\is_instance(t.source)) assert(Source\is_instance(t.source))
setmetatable(t, @) setmetatable(t, @)
if t.__init then t\__init! if init = t.__init then init(t)
return t return t
AST.Action.__init = => AST.Action.__init = =>

View File

@ -9,6 +9,9 @@ action [print tree %t at indent %indent]:
if %t.type is: if %t.type is:
"Action": "Action":
say "\(%indent)Action (\(%t.stub)):" say "\(%indent)Action (\(%t.stub)):"
if %t.target:
say "\(%indent) Target:"
print tree %t.target at indent "\%indent "
for %arg in %t: for %arg in %t:
if (%arg is syntax tree): if (%arg is syntax tree):
print tree %arg at indent "\%indent " print tree %arg at indent "\%indent "