Overhauling OO-API a little to make it more minimalistic.
This commit is contained in:
parent
517d661368
commit
520acd3979
@ -45,7 +45,7 @@ nth_to_last = function(self, n)
|
|||||||
return self[#self - n + 1]
|
return self[#self - n + 1]
|
||||||
end
|
end
|
||||||
local _list_mt = {
|
local _list_mt = {
|
||||||
__type = "List",
|
__type = "a List",
|
||||||
__eq = function(self, other)
|
__eq = function(self, other)
|
||||||
if not (type(other) == 'table' and getmetatable(other) == getmetatable(self) and #other == #self) then
|
if not (type(other) == 'table' and getmetatable(other) == getmetatable(self) and #other == #self) then
|
||||||
return false
|
return false
|
||||||
@ -252,7 +252,7 @@ List = function(t)
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
local _dict_mt = {
|
local _dict_mt = {
|
||||||
__type = "Dict",
|
__type = "a Dict",
|
||||||
__eq = function(self, other)
|
__eq = function(self, other)
|
||||||
if not (type(other) == 'table' and getmetatable(other) == getmetatable(self)) then
|
if not (type(other) == 'table' and getmetatable(other) == getmetatable(self)) then
|
||||||
return false
|
return false
|
||||||
|
@ -24,7 +24,7 @@ nth_to_last = (n)=> @[#@-n+1]
|
|||||||
-- used in Nomsu. This way, they retain a notion of whether they were originally lists or dicts.
|
-- used in Nomsu. This way, they retain a notion of whether they were originally lists or dicts.
|
||||||
|
|
||||||
_list_mt =
|
_list_mt =
|
||||||
__type: "List"
|
__type: "a List"
|
||||||
__eq: (other)=>
|
__eq: (other)=>
|
||||||
unless type(other) == 'table' and getmetatable(other) == getmetatable(@) and #other == #@
|
unless type(other) == 'table' and getmetatable(other) == getmetatable(@) and #other == #@
|
||||||
return false
|
return false
|
||||||
@ -107,7 +107,7 @@ List = (t)->
|
|||||||
else error("Unsupported List type: "..type(t))
|
else error("Unsupported List type: "..type(t))
|
||||||
|
|
||||||
_dict_mt =
|
_dict_mt =
|
||||||
__type: "Dict"
|
__type: "a Dict"
|
||||||
__eq: (other)=>
|
__eq: (other)=>
|
||||||
unless type(other) == 'table' and getmetatable(other) == getmetatable(@)
|
unless type(other) == 'table' and getmetatable(other) == getmetatable(@)
|
||||||
return false
|
return false
|
||||||
|
@ -254,13 +254,13 @@ say both (my favorite number) and also "foo"
|
|||||||
|
|
||||||
# Object-oriented programming:
|
# Object-oriented programming:
|
||||||
# How do I define a class?
|
# How do I define a class?
|
||||||
a (Vec) is a thing:
|
(a Vec) is (a thing) with [$x, $y]:
|
||||||
($its, + $other) means (Vec {.x = ($its.x + $other.x), .y = ($its.y + $other.y)})
|
($self, + $other) means (Vec ($x + $other.x) ($y + $other.y))
|
||||||
($its, length) means
|
($self, length) means (sqrt ($x * $x + $y * $y))
|
||||||
sqrt ($its.x * $its.x + $its.y * $its.y)
|
$(a Vec).is_a_vec = (yes)
|
||||||
|
(Vec $x $y) means (a Vec {.x = $x, .y = $y})
|
||||||
$v1 = (Vec {.x = 1, .y = 2})
|
$v1 = (Vec 1 2)
|
||||||
assume ($v1 + $v1) == (Vec {.x = 2, .y = 4})
|
assume ($v1 + $v1) == (Vec 2 4)
|
||||||
say $v1
|
say $v1
|
||||||
|
|
||||||
# Macros:
|
# Macros:
|
||||||
@ -313,7 +313,7 @@ debug only:
|
|||||||
[$best, $best_key] = [nil, nil]
|
[$best, $best_key] = [nil, nil]
|
||||||
for $item in $items:
|
for $item in $items:
|
||||||
$key = ($key_fn $item)
|
$key = ($key_fn $item)
|
||||||
if (($best is (nil)) or ($key > $best_key)):
|
if (($best == (nil)) or ($key > $best_key)):
|
||||||
[$best, $best_key] = [$item, $key]
|
[$best, $best_key] = [$item, $key]
|
||||||
return $best
|
return $best
|
||||||
|
|
||||||
@ -333,7 +333,7 @@ say (best of [2, -3, 4, -8] according to $($ squared))
|
|||||||
[$best, $best_key] = [nil, nil]
|
[$best, $best_key] = [nil, nil]
|
||||||
for $item in $items:
|
for $item in $items:
|
||||||
$key = $key_expr
|
$key = $key_expr
|
||||||
if (($best is (nil)) or ($key > $best_key)):
|
if (($best == (nil)) or ($key > $best_key)):
|
||||||
[$best, $best_key] = [$item, $key]
|
[$best, $best_key] = [$item, $key]
|
||||||
return $best
|
return $best
|
||||||
|
|
||||||
@ -347,6 +347,6 @@ say
|
|||||||
[$best, $best_key] = [nil, nil]
|
[$best, $best_key] = [nil, nil]
|
||||||
for $x in [2, -3, 4, -8]:
|
for $x in [2, -3, 4, -8]:
|
||||||
$key = ($x * $x)
|
$key = ($x * $x)
|
||||||
if (($best is (nil)) or ($key > $best_key)):
|
if (($best == (nil)) or ($key > $best_key)):
|
||||||
[$best, $best_key] = [$x, $key]
|
[$best, $best_key] = [$x, $key]
|
||||||
return $best
|
return $best
|
||||||
|
@ -21,7 +21,7 @@ upgrade $tree to "2.4" as:
|
|||||||
(not ($line is "Action" syntax tree)):
|
(not ($line is "Action" syntax tree)):
|
||||||
$new_lines, add $line
|
$new_lines, add $line
|
||||||
|
|
||||||
($line.stub is "*"):
|
($line.stub == "*"):
|
||||||
if ((size of $line) == 2):
|
if ((size of $line) == 2):
|
||||||
$conditions, add $line.2
|
$conditions, add $line.2
|
||||||
..else:
|
..else:
|
||||||
@ -59,7 +59,7 @@ upgrade $tree to "2.4" as:
|
|||||||
(not ($line is "Action" syntax tree)):
|
(not ($line is "Action" syntax tree)):
|
||||||
$new_lines, add $line
|
$new_lines, add $line
|
||||||
|
|
||||||
($line.stub is "*"):
|
($line.stub == "*"):
|
||||||
if ((size of $line) == 2):
|
if ((size of $line) == 2):
|
||||||
$values, add $line.2
|
$values, add $line.2
|
||||||
..else:
|
..else:
|
||||||
|
@ -29,7 +29,7 @@ upgrade $tree to "2" as:
|
|||||||
]
|
]
|
||||||
|
|
||||||
for $n in $need_blocks:
|
for $n in $need_blocks:
|
||||||
if ($tree.stub is $n):
|
if ($tree.stub == $n):
|
||||||
$bits = [: for $ in $tree: add (($ upgraded) if ($ is syntax tree) else $)]
|
$bits = [: for $ in $tree: add (($ upgraded) if ($ is syntax tree) else $)]
|
||||||
unless (($bits, last) is "Block" syntax tree):
|
unless (($bits, last) is "Block" syntax tree):
|
||||||
$body = ($bits, last)
|
$body = ($bits, last)
|
||||||
|
@ -13,7 +13,7 @@ upgrade action (externally $x all mean $y) to "6.15" as
|
|||||||
|
|
||||||
upgrade action ($lists flattened) to "6.15" as [
|
upgrade action ($lists flattened) to "6.15" as [
|
||||||
: for $ in recursive $lists:
|
: for $ in recursive $lists:
|
||||||
if ($ is a "List"):
|
if ($ is "a List"):
|
||||||
for $child in $:
|
for $child in $:
|
||||||
recurse $ on $child
|
recurse $ on $child
|
||||||
..else: add $
|
..else: add $
|
||||||
@ -24,3 +24,9 @@ upgrade action (compile error at $pos $msg $hint) to "6.15" as
|
|||||||
Compile error: \$msg
|
Compile error: \$msg
|
||||||
Hint: \$hint
|
Hint: \$hint
|
||||||
")
|
")
|
||||||
|
|
||||||
|
upgrade action ($x is $y) to "6.15" as ($x == $y)
|
||||||
|
upgrade action [$a isn't $b, $a is not $b, $a not= $b] to "6.15" as ($a != $b)
|
||||||
|
upgrade action [$a is a $b, $a is an $b] to "6.15" as ($a is $b)
|
||||||
|
upgrade action [$a isn't a $b, $a isn't an $b, $a is not a $b, $a is not an $b]
|
||||||
|
..to "6.15" as ($a isn't $b)
|
||||||
|
@ -327,7 +327,7 @@ test:
|
|||||||
$code = (Lua "")
|
$code = (Lua "")
|
||||||
$clause = "if"
|
$clause = "if"
|
||||||
$else_allowed = (yes)
|
$else_allowed = (yes)
|
||||||
unless ($body.type is "Block"):
|
unless ($body.type == "Block"):
|
||||||
at $body fail ("
|
at $body fail ("
|
||||||
Compile error: 'if' expected a Block, but got a \($body.type).
|
Compile error: 'if' expected a Block, but got a \($body.type).
|
||||||
Hint: Perhaps you forgot to put a ':' after 'if'?
|
Hint: Perhaps you forgot to put a ':' after 'if'?
|
||||||
@ -335,7 +335,7 @@ test:
|
|||||||
|
|
||||||
for $line in $body:
|
for $line in $body:
|
||||||
unless
|
unless
|
||||||
(($line.type is "Action") and ((size of $line) >= 2)) and
|
(($line.type == "Action") and ((size of $line) >= 2)) and
|
||||||
$line.(size of $line) is "Block" syntax tree
|
$line.(size of $line) is "Block" syntax tree
|
||||||
..:
|
..:
|
||||||
at $line fail ("
|
at $line fail ("
|
||||||
@ -344,7 +344,7 @@ test:
|
|||||||
..by a block, or "else" followed by a block.
|
..by a block, or "else" followed by a block.
|
||||||
")
|
")
|
||||||
$action = $line.(size of $line)
|
$action = $line.(size of $line)
|
||||||
if (($line.1 is "else") and ((size of $line) == 2)):
|
if (($line.1 == "else") and ((size of $line) == 2)):
|
||||||
unless $else_allowed:
|
unless $else_allowed:
|
||||||
at $line fail ("
|
at $line fail ("
|
||||||
Compile error: You can't have two 'else' blocks.
|
Compile error: You can't have two 'else' blocks.
|
||||||
@ -398,7 +398,7 @@ test:
|
|||||||
$clause = "if"
|
$clause = "if"
|
||||||
$else_allowed = (yes)
|
$else_allowed = (yes)
|
||||||
define mangler
|
define mangler
|
||||||
unless ($body.type is "Block"):
|
unless ($body.type == "Block"):
|
||||||
at $body fail ("
|
at $body fail ("
|
||||||
Compile error: 'if' expected a Block, but got a \($body.type).
|
Compile error: 'if' expected a Block, but got a \($body.type).
|
||||||
Hint: Perhaps you forgot to put a ':' after the 'is'?
|
Hint: Perhaps you forgot to put a ':' after the 'is'?
|
||||||
@ -406,7 +406,7 @@ test:
|
|||||||
|
|
||||||
for $line in $body:
|
for $line in $body:
|
||||||
unless
|
unless
|
||||||
(($line.type is "Action") and ((size of $line) >= 2)) and
|
(($line.type == "Action") and ((size of $line) >= 2)) and
|
||||||
$line.(size of $line) is "Block" syntax tree
|
$line.(size of $line) is "Block" syntax tree
|
||||||
..:
|
..:
|
||||||
at $line fail ("
|
at $line fail ("
|
||||||
@ -414,7 +414,7 @@ test:
|
|||||||
Hint: Each line should contain expressions followed by a block, or "else" followed by a block.
|
Hint: Each line should contain expressions followed by a block, or "else" followed by a block.
|
||||||
")
|
")
|
||||||
$action = $line.(size of $line)
|
$action = $line.(size of $line)
|
||||||
if (($line.1 is "else") and ((size of $line) == 2)):
|
if (($line.1 == "else") and ((size of $line) == 2)):
|
||||||
unless $else_allowed:
|
unless $else_allowed:
|
||||||
at $line fail ("
|
at $line fail ("
|
||||||
Compile error: You can't have two 'else' blocks.
|
Compile error: You can't have two 'else' blocks.
|
||||||
@ -470,7 +470,7 @@ test:
|
|||||||
$t = [1, [2, [[3], 4], 5, [[[6]]]]]
|
$t = [1, [2, [[3], 4], 5, [[[6]]]]]
|
||||||
$flat = []
|
$flat = []
|
||||||
for $ in recursive $t:
|
for $ in recursive $t:
|
||||||
if ((lua type of $) is "table"):
|
if ((lua type of $) == "table"):
|
||||||
for $2 in $:
|
for $2 in $:
|
||||||
recurse $ on $2
|
recurse $ on $2
|
||||||
..else:
|
..else:
|
||||||
|
@ -68,10 +68,10 @@ test:
|
|||||||
test:
|
test:
|
||||||
lua> "do"
|
lua> "do"
|
||||||
loc x
|
loc x
|
||||||
unless ($x is 99):
|
unless ($x == 99):
|
||||||
fail "Compile to statements with locals failed."
|
fail "Compile to statements with locals failed."
|
||||||
lua> "end"
|
lua> "end"
|
||||||
unless ($x is (nil)):
|
unless ($x == (nil)):
|
||||||
fail "Failed to properly localize a variable."
|
fail "Failed to properly localize a variable."
|
||||||
|
|
||||||
(asdf) compiles to:
|
(asdf) compiles to:
|
||||||
@ -80,7 +80,7 @@ test:
|
|||||||
|
|
||||||
test:
|
test:
|
||||||
asdf
|
asdf
|
||||||
unless ($tmp is (nil)):
|
unless ($tmp == (nil)):
|
||||||
fail "compile to is leaking variables"
|
fail "compile to is leaking variables"
|
||||||
|
|
||||||
lua> ("
|
lua> ("
|
||||||
@ -136,7 +136,7 @@ test:
|
|||||||
unless ((foo 10) == 11):
|
unless ((foo 10) == 11):
|
||||||
fail "Action didn't work."
|
fail "Action didn't work."
|
||||||
|
|
||||||
unless ($y is (nil)):
|
unless ($y == (nil)):
|
||||||
fail "Action leaked a local into globals."
|
fail "Action leaked a local into globals."
|
||||||
|
|
||||||
(baz $) parses as (foo $)
|
(baz $) parses as (foo $)
|
||||||
@ -402,10 +402,11 @@ test:
|
|||||||
(quote $s) compiles to "tostring(\($s as lua expr)):as_lua()"
|
(quote $s) compiles to "tostring(\($s as lua expr)):as_lua()"
|
||||||
test:
|
test:
|
||||||
assume (lua type of {}) == "table"
|
assume (lua type of {}) == "table"
|
||||||
assume (type of {}) == "Dict"
|
assume (type of {}) == "a Dict"
|
||||||
assume ({} is a "Dict")
|
assume ({} is "a Dict")
|
||||||
assume ("" is text)
|
assume ("" is text)
|
||||||
assume ("" isn't a "Dict")
|
assume ("" is "Text")
|
||||||
|
assume ("" isn't "a Dict")
|
||||||
|
|
||||||
external:
|
external:
|
||||||
($ is text) means (=lua "\(lua type of $) == 'string'")
|
($ is text) means (=lua "\(lua type of $) == 'string'")
|
||||||
@ -418,12 +419,11 @@ external:
|
|||||||
local mt = getmetatable(\$)
|
local mt = getmetatable(\$)
|
||||||
if mt and mt.__type then return mt.__type end
|
if mt and mt.__type then return mt.__type end
|
||||||
end
|
end
|
||||||
return lua_type
|
return 'a '..lua_type
|
||||||
")
|
")
|
||||||
|
|
||||||
[$ is a $type, $ is an $type] all parse as ((type of $) == $type)
|
($ is $type) parses as ((type of $) == $type)
|
||||||
[$ isn't a $type, $ isn't an $type, $ is not a $type, $ is not an $type]
|
[$ isn't $type, $ is not $type] all parse as ((type of $) != $type)
|
||||||
..all parse as ((type of $) != $type)
|
|
||||||
|
|
||||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||||
|
|
||||||
|
@ -14,7 +14,7 @@ test:
|
|||||||
($x > $y) compiles to "(\($x as lua expr) > \($y as lua expr))"
|
($x > $y) compiles to "(\($x as lua expr) > \($y as lua expr))"
|
||||||
($x <= $y) compiles to "(\($x as lua expr) <= \($y as lua expr))"
|
($x <= $y) compiles to "(\($x as lua expr) <= \($y as lua expr))"
|
||||||
($x >= $y) compiles to "(\($x as lua expr) >= \($y as lua expr))"
|
($x >= $y) compiles to "(\($x as lua expr) >= \($y as lua expr))"
|
||||||
[$a is $b, $a == $b] all compile to "(\($a as lua expr) == \($b as lua expr))"
|
($a == $b) compiles to "(\($a as lua expr) == \($b as lua expr))"
|
||||||
[$a isn't $b, $a is not $b, $a not= $b, $a != $b] all compile to
|
[$a isn't $b, $a is not $b, $a not= $b, $a != $b] all compile to
|
||||||
"(\($a as lua expr) ~= \($b as lua expr))"
|
"(\($a as lua expr) ~= \($b as lua expr))"
|
||||||
|
|
||||||
|
@ -11,29 +11,30 @@ use "core/errors"
|
|||||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||||
|
|
||||||
test:
|
test:
|
||||||
an (Empty) is a thing
|
(an Empty) is (a thing) with []
|
||||||
a (Buffer) is a thing:
|
(a Buffer) is (a thing) with [$bits]:
|
||||||
$its.is_a_buffer = (yes)
|
$self.is_a_buffer = (yes)
|
||||||
($its, set up) means:
|
($self, set up) means:
|
||||||
$its.bits or= []
|
$bits or= []
|
||||||
($it, as text) means ($it.bits, joined)
|
($self, as text) means ($bits, joined)
|
||||||
[($its, add $bit), ($its, append $bit)] all mean: $its.bits, add $bit
|
[($self, add $bit), ($self, append $bit)] all mean: $bits, add $bit
|
||||||
assume (Buffer).is_a_buffer
|
assume $(a Buffer).is_a_buffer
|
||||||
$b = (a Buffer)
|
$b = (a Buffer)
|
||||||
assume (type of $b) == "Buffer"
|
assume (type of $b) == "a Buffer"
|
||||||
|
assume ($b is "a Buffer")
|
||||||
assume $b.is_a_buffer
|
assume $b.is_a_buffer
|
||||||
assume "\$b" == ""
|
assume "\$b" == ""
|
||||||
assume ($b, as text) == ""
|
assume ($b, as text) == ""
|
||||||
$b = (a Buffer with {.bits = ["x"]})
|
$b = (a Buffer {.bits = ["x"]})
|
||||||
$b,
|
$b,
|
||||||
add "y"
|
add "y"
|
||||||
append "z"
|
append "z"
|
||||||
assume "\$b" == "xyz"
|
assume "\$b" == "xyz"
|
||||||
assume $b == (a Buffer with {.bits = ["x", "y", "z"]})
|
assume $b == (a Buffer {.bits = ["x", "y", "z"]})
|
||||||
assume $b != (a Buffer with {.bits = []})
|
assume $b != (a Buffer {.bits = []})
|
||||||
a (Comma Buffer) is a (Buffer):
|
(a Comma Buffer) is (a Buffer) with [$bits]:
|
||||||
($it, as text) means ($it.bits, joined with ",")
|
($self, as text) means ($bits, joined with ",")
|
||||||
($its, number of commas) means ((#$its.bits) - 1)
|
($self, number of commas) means ((#$bits) - 1)
|
||||||
$csv = (a Comma Buffer)
|
$csv = (a Comma Buffer)
|
||||||
assume $csv.is_a_buffer
|
assume $csv.is_a_buffer
|
||||||
assume "\$csv" == ""
|
assume "\$csv" == ""
|
||||||
@ -41,14 +42,13 @@ test:
|
|||||||
$csv, add "y"
|
$csv, add "y"
|
||||||
assume "\$csv" == "x,y"
|
assume "\$csv" == "x,y"
|
||||||
assume ($csv, number of commas) == 1
|
assume ($csv, number of commas) == 1
|
||||||
a (Vec) is a thing with {.x, .y}:
|
(a Vec) is (a thing) with [$x, $y]:
|
||||||
($its, + $other) means (Vec {.x = ($its.x + $other.x), .y = ($its.y + $other.y)})
|
($self, + $other) means (Vec ($x + $other.x) ($y + $other.y))
|
||||||
|
($self, length) means (sqrt ($x * $x + $y * $y))
|
||||||
assume ((Vec {.x = 1, .y = 2}) + (Vec {.x = 10, .y = 10})) ==
|
(Vec $x $y) means (a Vec {.x = $x, .y = $y})
|
||||||
Vec {.x = 11, .y = 12}
|
assume ((Vec 1 2) + (Vec 10 10)) == (Vec 11 12)
|
||||||
|
assume (((Vec 1 2) + (Vec 10 10)) != (Vec 0 0))
|
||||||
assume
|
assume (Vec 3 4, length) == 5
|
||||||
((Vec {.x = 1, .y = 2}) + (Vec {.x = 10, .y = 10})) != (Vec {.x = 0, .y = 0})
|
|
||||||
|
|
||||||
$METAMETHOD_MAP = {
|
$METAMETHOD_MAP = {
|
||||||
."as text" = "__tostring", ."clean up" = "__gc", ."+" = "__add", ."-" = "__sub"
|
."as text" = "__tostring", ."clean up" = "__gc", ."+" = "__add", ."-" = "__sub"
|
||||||
@ -61,30 +61,19 @@ $METAMETHOD_MAP = {
|
|||||||
|
|
||||||
$($ as text like a dict) = ({}'s metatable).__tostring
|
$($ as text like a dict) = ({}'s metatable).__tostring
|
||||||
external:
|
external:
|
||||||
[
|
($parent class named $classname $(initialize $)) means:
|
||||||
a $parent class named $classname with $members $(initialize $)
|
|
||||||
an $parent class named $classname with $members $(initialize $)
|
|
||||||
] all mean:
|
|
||||||
$class = {.__type = $classname}
|
$class = {.__type = $classname}
|
||||||
$class.__index = $class
|
$class.__index = $class
|
||||||
$class.class = $class
|
$class.class = $class
|
||||||
$class.__tostring = ($ -> "\($.__type) \($ as text like a dict)")
|
$class.__tostring = ($ -> "\($.__type) \($ as text like a dict)")
|
||||||
$class.__eq = ({}'s metatable).__eq
|
$class.__eq = ({}'s metatable).__eq
|
||||||
$class.__len = ({}'s metatable).__len
|
$class.__len = ({}'s metatable).__len
|
||||||
if $members:
|
|
||||||
$class.__members = $members
|
|
||||||
$class.__newindex =
|
|
||||||
for ($its $key = $value):
|
|
||||||
if $members.$key:
|
|
||||||
rawset $its $key $value
|
|
||||||
..else:
|
|
||||||
fail "Cannot set \$key, it's not one of the allowed member fields."
|
|
||||||
|
|
||||||
set $class's metatable to {
|
set $class's metatable to {
|
||||||
.__index = $parent, .__tostring = ($class -> $class.__type)
|
.__index = $parent, .__tostring = ($class -> $class.__type)
|
||||||
.__call =
|
.__call =
|
||||||
for ($class with $initial_values):
|
for ($class with $initial_values):
|
||||||
if ($initial_values == (nil)): return $class
|
$initial_values or= {}
|
||||||
set $initial_values's metatable to $class
|
set $initial_values's metatable to $class
|
||||||
if $initial_values.set_up:
|
if $initial_values.set_up:
|
||||||
$initial_values, set up
|
$initial_values, set up
|
||||||
@ -98,44 +87,35 @@ external:
|
|||||||
$class.$metamethod = $class.($stub, as lua id)
|
$class.$metamethod = $class.($stub, as lua id)
|
||||||
|
|
||||||
return $class
|
return $class
|
||||||
|
|
||||||
[
|
$(a thing) = ((nil) class named "thing")
|
||||||
a $classname is a $parent with $members $class_body
|
|
||||||
an $classname is a $parent with $members $class_body
|
($classname is $parent with $vars $class_body) compiles to:
|
||||||
a $classname is an $parent with $members $class_body
|
unless ($vars.type == "List"):
|
||||||
an $classname is an $parent with $members $class_body
|
at $vars fail ("
|
||||||
] all compile to:
|
Compile error: This is not a list of variables.
|
||||||
|
")
|
||||||
$class_id = ($classname.stub, as lua id)
|
$class_id = ($classname.stub, as lua id)
|
||||||
|
if $class_body:
|
||||||
|
$class_body =
|
||||||
|
$class_body with vars {
|
||||||
|
: for $v in $vars:
|
||||||
|
add ($v as lua expr, text) =
|
||||||
|
SyntaxTree {.type = "IndexChain"} (SyntaxTree {.type = "Var"} "self")
|
||||||
|
SyntaxTree {.type = "Index"} (SyntaxTree {.type = "Text"} $v.1)
|
||||||
|
}
|
||||||
$lua =
|
$lua =
|
||||||
Lua ("
|
Lua ("
|
||||||
\$class_id = a_1_class_named_2_with(\($parent as lua), \(quote $classname.stub), \
|
\$class_id = _1_class_named(\($parent as lua), \(quote $classname.stub)\(
|
||||||
..\($members as lua)\(
|
|
||||||
(
|
(
|
||||||
Lua ("
|
Lua ("
|
||||||
, function(\$class_id)
|
, function(\$class_id)
|
||||||
local it, its = \$class_id, \$class_id;
|
local self = \$class_id
|
||||||
\($class_body as lua)
|
\($class_body as lua)
|
||||||
end
|
end
|
||||||
")
|
")
|
||||||
) if $class_body else ""
|
) if $class_body else ""
|
||||||
))
|
))
|
||||||
a_\$class_id = function(initial_values) return \$class_id(initial_values or {}) end
|
|
||||||
an_\$class_id, a_\($class_id)_with, an_\($class_id)_with = a_\$class_id, a_\$class_id, a_\$class_id
|
|
||||||
")
|
")
|
||||||
$lua, add free vars [$class_id, "a_\$class_id", "an_\$class_id"]
|
$lua, add free vars [$class_id]
|
||||||
return $lua
|
return $lua
|
||||||
|
|
||||||
[
|
|
||||||
a $classname is a thing with $members $class_body
|
|
||||||
an $classname is a thing with $members $class_body
|
|
||||||
a $classname is an thing with $members $class_body
|
|
||||||
an $classname is an thing with $members $class_body
|
|
||||||
] all parse as (a $classname is a (nil) with $members $class_body)
|
|
||||||
|
|
||||||
[a $classname is a thing $class_body, an $classname is a thing $class_body]
|
|
||||||
..all parse as (a $classname is a (nil) with (nil) $class_body)
|
|
||||||
|
|
||||||
[
|
|
||||||
a $classname is a $parent $class_body, an $classname is a $parent $class_body
|
|
||||||
a $classname is an $parent $class_body, an $classname is an $parent $class_body
|
|
||||||
] all parse as (a $classname is a $parent with (nil) $class_body)
|
|
||||||
|
@ -42,7 +42,7 @@ command line program with $args:
|
|||||||
: for $ in recursive $pattern_tree:
|
: for $ in recursive $pattern_tree:
|
||||||
if (($.type == "Var") and (not $literal_vars.($.1))): add $.1
|
if (($.type == "Var") and (not $literal_vars.($.1))): add $.1
|
||||||
for $child in $:
|
for $child in $:
|
||||||
if ($child is a "Syntax Tree"):
|
if ($child is "a Syntax Tree"):
|
||||||
recurse $ on $child
|
recurse $ on $child
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -224,7 +224,7 @@ do
|
|||||||
end
|
end
|
||||||
SyntaxTree = _class_0
|
SyntaxTree = _class_0
|
||||||
end
|
end
|
||||||
SyntaxTree.__base.__type = "Syntax Tree"
|
SyntaxTree.__base.__type = "a 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)
|
||||||
|
@ -107,7 +107,7 @@ class SyntaxTree
|
|||||||
@is_instance: (t)=>
|
@is_instance: (t)=>
|
||||||
type(t) == 'table' and getmetatable(t) == @__base
|
type(t) == 'table' and getmetatable(t) == @__base
|
||||||
|
|
||||||
SyntaxTree.__base.__type = "Syntax Tree"
|
SyntaxTree.__base.__type = "a Syntax Tree"
|
||||||
|
|
||||||
getmetatable(SyntaxTree).__call = (t, ...)=>
|
getmetatable(SyntaxTree).__call = (t, ...)=>
|
||||||
if type(t.source) == 'string'
|
if type(t.source) == 'string'
|
||||||
|
Loading…
Reference in New Issue
Block a user