Added underscores for numbers (e.g. 1_000, 0xDEAD_BEEF), and fixed some
compatibility and decompiling issues.
This commit is contained in:
parent
5d5dea4639
commit
9e9bcad6fa
@ -17,7 +17,7 @@ external:
|
||||
$ACTION_UPGRADES.$version.$stub = $upgrade_fn
|
||||
|
||||
(upgrade $tree to $version as $body) parses as
|
||||
upgrade to $version via (($ $end_version) -> ($ with $tree -> $body))
|
||||
upgrade to $version via (($ $end_version) -> ($, with ($tree -> $body)))
|
||||
|
||||
(upgrade action $actions to $version as $body) compiles to:
|
||||
if ($actions is "Action" syntax tree):
|
||||
@ -70,12 +70,12 @@ external:
|
||||
$tree upgraded to $end_version from $start_version
|
||||
] all mean:
|
||||
unless ($tree is syntax tree): return $tree
|
||||
($ver as list) means (($ as number) for $ in $ver matching "[0-9]+")
|
||||
($ver as version list) means (($ as number) for $ in $ver matching "[0-9]+")
|
||||
(Ver $) means:
|
||||
[$lib, $ver] = ($, match "(.*)/([0-9.]+)")
|
||||
if $lib:
|
||||
return {.lib = $lib, .version = ($ver as list)}
|
||||
return {.version = ($ as list)}
|
||||
return {.lib = $lib, .version = ($ver as version list)}
|
||||
return {.version = ($ as version list)}
|
||||
$start = (Ver $start_version)
|
||||
$end = (Ver $end_version)
|
||||
$end.lib or= $start.lib
|
||||
@ -89,13 +89,14 @@ external:
|
||||
$versions.$v = (yes)
|
||||
|
||||
$versions = [: for $v = $ in $versions: if ((Ver $v).lib == $start.lib): add $v]
|
||||
sort $versions by $ -> ($ as list)
|
||||
sort $versions by $ -> ($ as version list)
|
||||
for $ver in $versions:
|
||||
if (($ver as list) <= $start.version): do next $ver
|
||||
if (($ver as list) > $end.version): stop $ver
|
||||
if (($ver as version list) <= $start.version): do next $ver
|
||||
if (($ver as version list) > $end.version): stop $ver
|
||||
if $ACTION_UPGRADES.$ver:
|
||||
$tree =
|
||||
$tree with $ ->:
|
||||
$tree, with
|
||||
$ ->:
|
||||
if (($ is "Action" syntax tree) and $ACTION_UPGRADES.$ver.($.stub)):
|
||||
$with_upgraded_args = {
|
||||
: for $k = $v in $:
|
||||
|
@ -180,14 +180,13 @@ number <-
|
||||
hex_integer / real_number / integer
|
||||
|
||||
integer (Number) <-
|
||||
(((%at_break "-")? [0-9]+)-> tonumber)
|
||||
{ (%at_break "-")? [0-9]+ (("_"+->"") [0-9]+)* }
|
||||
|
||||
hex_integer (Number) <-
|
||||
(((%at_break "-")? "0x" [0-9a-fA-F]+)-> tonumber)
|
||||
{:hex: '' -> 'yes' :}
|
||||
{ (%at_break "-")? "0x" [0-9a-fA-F]+ (("_"+->"") [0-9a-fA-F]+)* }
|
||||
|
||||
real_number (Number) <-
|
||||
(((%at_break "-")? [0-9]+ "." [0-9]+)-> tonumber)
|
||||
{ (%at_break "-")? [0-9]+ (("_"+->"") [0-9]+)* "." [0-9]+ (("_"+->"") [0-9]+)* }
|
||||
|
||||
|
||||
variable (Var) <- "$" ({ident_char+} / "(" ws* (inline_action / variable) ws* ")" / {''})
|
||||
|
@ -406,7 +406,8 @@ compile = function(self, tree)
|
||||
end
|
||||
return lua
|
||||
elseif "Number" == _exp_0 then
|
||||
return LuaCode:from(tree.source, tostring(tree[1]))
|
||||
local number = tostring(tree[1]):gsub("_", "")
|
||||
return LuaCode:from(tree.source, number)
|
||||
elseif "Var" == _exp_0 then
|
||||
return LuaCode:from(tree.source, tree:as_var():as_lua_id())
|
||||
elseif "FileChunks" == _exp_0 then
|
||||
|
@ -326,7 +326,8 @@ compile = (tree)=>
|
||||
return lua
|
||||
|
||||
when "Number"
|
||||
return LuaCode\from(tree.source, tostring(tree[1]))
|
||||
number = tostring(tree[1])\gsub("_", "")
|
||||
return LuaCode\from(tree.source, number)
|
||||
|
||||
when "Var"
|
||||
return LuaCode\from(tree.source, tree\as_var!\as_lua_id!)
|
||||
|
@ -19,11 +19,11 @@ local operator_patt = operator_char ^ 1 * -1
|
||||
local identifier_patt = (R("az", "AZ", "09") + P("_") + (-operator_char * utf8_char_patt)) ^ 1 * -1
|
||||
local is_operator
|
||||
is_operator = function(s)
|
||||
return type(s) == 'string' and operator_patt:match(s)
|
||||
return type(s) == 'string' and not not operator_patt:match(s)
|
||||
end
|
||||
local is_identifier
|
||||
is_identifier = function(s)
|
||||
return type(s) == 'string' and identifier_patt:match(s)
|
||||
return type(s) == 'string' and not not identifier_patt:match(s)
|
||||
end
|
||||
local can_be_unary
|
||||
can_be_unary = function(t)
|
||||
@ -71,7 +71,7 @@ tree_to_inline_nomsu = function(tree)
|
||||
if type(tree[i - 1]) == 'string' then
|
||||
clump_words = is_operator(bit) ~= is_operator(tree[i - 1])
|
||||
else
|
||||
clump_words = bit == "'"
|
||||
clump_words = bit == "'" and type(tree[i - 1]) ~= 'string'
|
||||
end
|
||||
if i > 1 and not clump_words then
|
||||
nomsu:add(" ")
|
||||
@ -235,13 +235,16 @@ tree_to_inline_nomsu = function(tree)
|
||||
end
|
||||
return nomsu
|
||||
elseif "Number" == _exp_0 then
|
||||
local n = tostring(tree[1])
|
||||
local s
|
||||
if tree.hex and tree[1] < 0 then
|
||||
if n:match("^-*0x") then
|
||||
s = n:upper():gsub("0X", "0x")
|
||||
elseif tree.hex and tonumber((n:gsub("_", ""))) < 0 then
|
||||
s = ("-0x%X"):format(-tree[1])
|
||||
elseif tree.hex then
|
||||
s = ("0x%X"):format(tree[1])
|
||||
else
|
||||
s = tostring(tree[1])
|
||||
s = n
|
||||
end
|
||||
return NomsuCode:from(tree.source, s)
|
||||
elseif "Var" == _exp_0 then
|
||||
@ -449,7 +452,7 @@ tree_to_nomsu = function(tree)
|
||||
if #word_buffer > 0 then
|
||||
local words = table.concat(word_buffer)
|
||||
if next_space == " " then
|
||||
if nomsu:trailing_line_len() + #words > MAX_LINE and nomsu:trailing_line_len() > 8 then
|
||||
if nomsu:trailing_line_len() + #words > MAX_LINE + 8 and nomsu:trailing_line_len() > 8 then
|
||||
next_space = "\n.."
|
||||
elseif word_buffer[1] == "'" then
|
||||
next_space = ""
|
||||
|
@ -16,10 +16,10 @@ operator_patt = operator_char^1 * -1
|
||||
identifier_patt = (R("az","AZ","09") + P("_") + (-operator_char*utf8_char_patt))^1 * -1
|
||||
|
||||
is_operator = (s)->
|
||||
return type(s) == 'string' and operator_patt\match(s)
|
||||
return type(s) == 'string' and not not operator_patt\match(s)
|
||||
|
||||
is_identifier = (s)->
|
||||
return type(s) == 'string' and identifier_patt\match(s)
|
||||
return type(s) == 'string' and not not identifier_patt\match(s)
|
||||
|
||||
can_be_unary = (t)->
|
||||
t.type == "Action" and #t == 2 and is_operator(t[1]) and type(t[2]) != 'string' and t[2].type != "Block"
|
||||
@ -51,7 +51,7 @@ tree_to_inline_nomsu = (tree)->
|
||||
num_words += 1
|
||||
clump_words = if type(tree[i-1]) == 'string'
|
||||
is_operator(bit) != is_operator(tree[i-1])
|
||||
else bit == "'"
|
||||
else bit == "'" and type(tree[i-1]) != 'string'
|
||||
nomsu\add " " if i > 1 and not clump_words
|
||||
nomsu\add bit
|
||||
else
|
||||
@ -175,11 +175,15 @@ tree_to_inline_nomsu = (tree)->
|
||||
return nomsu
|
||||
|
||||
when "Number"
|
||||
s = if tree.hex and tree[1] < 0
|
||||
-- Preserve original formatting, just make sure 0xdead_beef -> 0xDEAD_BEEF
|
||||
n = tostring(tree[1])
|
||||
s = if n\match("^-*0x")
|
||||
n\upper!\gsub("0X", "0x")
|
||||
elseif tree.hex and tonumber((n\gsub("_",""))) < 0
|
||||
("-0x%X")\format(-tree[1])
|
||||
elseif tree.hex
|
||||
("0x%X")\format(tree[1])
|
||||
else tostring(tree[1])
|
||||
else n
|
||||
return NomsuCode\from(tree.source, s)
|
||||
|
||||
when "Var"
|
||||
@ -334,7 +338,7 @@ tree_to_nomsu = (tree)->
|
||||
if #word_buffer > 0
|
||||
words = table.concat(word_buffer)
|
||||
if next_space == " "
|
||||
if nomsu\trailing_line_len! + #words > MAX_LINE and nomsu\trailing_line_len! > 8
|
||||
if nomsu\trailing_line_len! + #words > MAX_LINE + 8 and nomsu\trailing_line_len! > 8
|
||||
next_space = "\n.."
|
||||
elseif word_buffer[1] == "'"
|
||||
next_space = ""
|
||||
|
Loading…
Reference in New Issue
Block a user