Added (SyntaxTree {...} ...) shorthand for SyntaxTree{..., ...} and

added some shebangs.
This commit is contained in:
Bruce Hill 2019-01-14 16:30:17 -08:00
parent 5eb1b276ad
commit 9fceff7e78
8 changed files with 20 additions and 8 deletions

View File

@ -77,8 +77,7 @@ upgrade $tree to "4.10.12.7" as:
$chunk2.($j - $i + 1) = $first_chunk.$j
$new_tree =
SyntaxTree
{.source = $tree.source, .type = "FileChunks", .1 = $chunk1, .2 = $chunk2}
SyntaxTree {.source = $tree.source, .type = "FileChunks"} $chunk1 $chunk2
for $i in 2 to (size of $tree):
$new_tree.($i + 1) = $tree.$i

View File

@ -27,8 +27,7 @@ upgrade action "set" to "4.11" via
$rhs.$i = $entry.2
return
SyntaxTree
{.type = "Action", .source = $tree.source, .1 = $lhs, .2 = "=", .3 = $rhs}
SyntaxTree {.type = "Action", .source = $tree.source} $lhs "=" $rhs
upgrade action "1 with 2 ~>" to "4.11" via
for $tree:

View File

@ -31,3 +31,11 @@ upgrade action (\(1's meaning)).stub to "6.14" via
$tree -> (SyntaxTree {.source = $tree.source, .type = "Var", $tree.1})
upgrade action (log base $b of $n) to "6.14" as (log $n base $b)
upgrade action "use" to "6.14" via
for $tree:
$path = $tree.2.1
$path = ($path, with "%.nom$" -> "")
$path = ($path, with "^lib/" -> "")
return \(use (SyntaxTree {.source = $tree.2.source, .type="Text"} $path))

View File

@ -1,4 +1,4 @@
#!/usr/bin/env nomsu -V6.14.13.8
export "compatibility/compatibility"
export "compatibility/2"
export "compatibility/2.3"

View File

@ -1,3 +1,4 @@
#!/usr/bin/env nomsu -V6.14.13.8
# Export everything
export "core/metaprogramming"
export "core/operators"

View File

@ -85,7 +85,7 @@ test:
set global x local y
unless (($foozle == "inner") and ($y == "outer")): fail "external failed."
(external $var = $value) compiles to:
$lua = ((SyntaxTree {.type = "Action", .source = $var.source, .1 = $var, .2 = "=", .3 = $value}) as lua)
$lua = ((SyntaxTree {.type = "Action", .source = $var.source} $var "=" $value) as lua)
$lua, remove free vars
return $lua
test:

View File

@ -225,11 +225,14 @@ do
SyntaxTree = _class_0
end
SyntaxTree.__base.__type = "Syntax Tree"
getmetatable(SyntaxTree).__call = function(self, t)
getmetatable(SyntaxTree).__call = function(self, t, ...)
if type(t.source) == 'string' then
t.source = Source:from_string(t.source)
end
setmetatable(t, self.__base)
for i = 1, select("#", ...) do
t[i] = select(i, ...)
end
if t.type == 'Action' then
t.stub = t:get_stub()
end

View File

@ -111,10 +111,12 @@ class SyntaxTree
SyntaxTree.__base.__type = "Syntax Tree"
getmetatable(SyntaxTree).__call = (t)=>
getmetatable(SyntaxTree).__call = (t, ...)=>
if type(t.source) == 'string'
t.source = Source\from_string(t.source)
setmetatable(t, @__base)
for i=1,select("#", ...)
t[i] = select(i, ...)
if t.type == 'Action'
t.stub = t\get_stub!
return t