Fixed a string indexing issue.
This commit is contained in:
parent
acd1191fb0
commit
43ff3892f3
@ -24,7 +24,7 @@ externally (upgrade action %stub to %version via %upgrade_fn) means:
|
|||||||
for %action in %actions:
|
for %action in %actions:
|
||||||
%replacements = {}
|
%replacements = {}
|
||||||
for %i in 1 to (size of %action):
|
for %i in 1 to (size of %action):
|
||||||
if (%action.%i.type is "Var"):
|
if (%action.%i is "Var" syntax tree):
|
||||||
%replacements.(%action.%i.1) = "\(\%tree as lua id)[\%i]"
|
%replacements.(%action.%i.1) = "\(\%tree as lua id)[\%i]"
|
||||||
define mangler
|
define mangler
|
||||||
(make tree %t) means:
|
(make tree %t) means:
|
||||||
|
@ -501,9 +501,6 @@ do
|
|||||||
setmetatable(text_methods, {
|
setmetatable(text_methods, {
|
||||||
__index = string2
|
__index = string2
|
||||||
})
|
})
|
||||||
setmetatable(string2, {
|
|
||||||
__index = error
|
|
||||||
})
|
|
||||||
getmetatable("").__methods = text_methods
|
getmetatable("").__methods = text_methods
|
||||||
getmetatable("").__index = text_methods
|
getmetatable("").__index = text_methods
|
||||||
getmetatable("").__add = function(self, x)
|
getmetatable("").__add = function(self, x)
|
||||||
|
@ -200,7 +200,6 @@ do
|
|||||||
character: (i)=> sub(@, i, i)
|
character: (i)=> sub(@, i, i)
|
||||||
|
|
||||||
setmetatable(text_methods, {__index:string2})
|
setmetatable(text_methods, {__index:string2})
|
||||||
setmetatable(string2, {__index:error})
|
|
||||||
getmetatable("").__methods = text_methods
|
getmetatable("").__methods = text_methods
|
||||||
getmetatable("").__index = text_methods
|
getmetatable("").__index = text_methods
|
||||||
getmetatable("").__add = (x)=> tostring(@)..tostring(x)
|
getmetatable("").__add = (x)=> tostring(@)..tostring(x)
|
||||||
|
Loading…
Reference in New Issue
Block a user