Added (SyntaxTree {...} ...) shorthand for SyntaxTree{..., ...} and
added some shebangs.
This commit is contained in:
parent
5eb1b276ad
commit
9fceff7e78
@ -77,8 +77,7 @@ upgrade $tree to "4.10.12.7" as:
|
|||||||
$chunk2.($j - $i + 1) = $first_chunk.$j
|
$chunk2.($j - $i + 1) = $first_chunk.$j
|
||||||
|
|
||||||
$new_tree =
|
$new_tree =
|
||||||
SyntaxTree
|
SyntaxTree {.source = $tree.source, .type = "FileChunks"} $chunk1 $chunk2
|
||||||
{.source = $tree.source, .type = "FileChunks", .1 = $chunk1, .2 = $chunk2}
|
|
||||||
|
|
||||||
for $i in 2 to (size of $tree):
|
for $i in 2 to (size of $tree):
|
||||||
$new_tree.($i + 1) = $tree.$i
|
$new_tree.($i + 1) = $tree.$i
|
||||||
|
@ -27,8 +27,7 @@ upgrade action "set" to "4.11" via
|
|||||||
$rhs.$i = $entry.2
|
$rhs.$i = $entry.2
|
||||||
|
|
||||||
return
|
return
|
||||||
SyntaxTree
|
SyntaxTree {.type = "Action", .source = $tree.source} $lhs "=" $rhs
|
||||||
{.type = "Action", .source = $tree.source, .1 = $lhs, .2 = "=", .3 = $rhs}
|
|
||||||
|
|
||||||
upgrade action "1 with 2 ~>" to "4.11" via
|
upgrade action "1 with 2 ~>" to "4.11" via
|
||||||
for $tree:
|
for $tree:
|
||||||
|
@ -31,3 +31,11 @@ upgrade action (\(1's meaning)).stub to "6.14" via
|
|||||||
$tree -> (SyntaxTree {.source = $tree.source, .type = "Var", $tree.1})
|
$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 (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))
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
|
#!/usr/bin/env nomsu -V6.14.13.8
|
||||||
export "compatibility/compatibility"
|
export "compatibility/compatibility"
|
||||||
export "compatibility/2"
|
export "compatibility/2"
|
||||||
export "compatibility/2.3"
|
export "compatibility/2.3"
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
|
#!/usr/bin/env nomsu -V6.14.13.8
|
||||||
# Export everything
|
# Export everything
|
||||||
export "core/metaprogramming"
|
export "core/metaprogramming"
|
||||||
export "core/operators"
|
export "core/operators"
|
||||||
|
@ -85,7 +85,7 @@ test:
|
|||||||
set global x local y
|
set global x local y
|
||||||
unless (($foozle == "inner") and ($y == "outer")): fail "external failed."
|
unless (($foozle == "inner") and ($y == "outer")): fail "external failed."
|
||||||
(external $var = $value) compiles to:
|
(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
|
$lua, remove free vars
|
||||||
return $lua
|
return $lua
|
||||||
test:
|
test:
|
||||||
|
@ -225,11 +225,14 @@ do
|
|||||||
SyntaxTree = _class_0
|
SyntaxTree = _class_0
|
||||||
end
|
end
|
||||||
SyntaxTree.__base.__type = "Syntax Tree"
|
SyntaxTree.__base.__type = "Syntax Tree"
|
||||||
getmetatable(SyntaxTree).__call = function(self, t)
|
getmetatable(SyntaxTree).__call = function(self, t, ...)
|
||||||
if type(t.source) == 'string' then
|
if type(t.source) == 'string' then
|
||||||
t.source = Source:from_string(t.source)
|
t.source = Source:from_string(t.source)
|
||||||
end
|
end
|
||||||
setmetatable(t, self.__base)
|
setmetatable(t, self.__base)
|
||||||
|
for i = 1, select("#", ...) do
|
||||||
|
t[i] = select(i, ...)
|
||||||
|
end
|
||||||
if t.type == 'Action' then
|
if t.type == 'Action' then
|
||||||
t.stub = t:get_stub()
|
t.stub = t:get_stub()
|
||||||
end
|
end
|
||||||
|
@ -111,10 +111,12 @@ class SyntaxTree
|
|||||||
|
|
||||||
SyntaxTree.__base.__type = "Syntax Tree"
|
SyntaxTree.__base.__type = "Syntax Tree"
|
||||||
|
|
||||||
getmetatable(SyntaxTree).__call = (t)=>
|
getmetatable(SyntaxTree).__call = (t, ...)=>
|
||||||
if type(t.source) == 'string'
|
if type(t.source) == 'string'
|
||||||
t.source = Source\from_string(t.source)
|
t.source = Source\from_string(t.source)
|
||||||
setmetatable(t, @__base)
|
setmetatable(t, @__base)
|
||||||
|
for i=1,select("#", ...)
|
||||||
|
t[i] = select(i, ...)
|
||||||
if t.type == 'Action'
|
if t.type == 'Action'
|
||||||
t.stub = t\get_stub!
|
t.stub = t\get_stub!
|
||||||
return t
|
return t
|
||||||
|
Loading…
Reference in New Issue
Block a user