2018-02-02 15:48:28 -08:00
|
|
|
use "core"
|
2018-01-18 01:49:13 -08:00
|
|
|
|
2018-05-30 17:20:22 -07:00
|
|
|
lua> "CLASSES = {}"
|
2018-01-18 01:49:13 -08:00
|
|
|
|
2018-05-30 17:20:22 -07:00
|
|
|
immediately
|
|
|
|
compile [@, me] to: Lua value "self"
|
|
|
|
action [new %classname %inst]
|
|
|
|
=lua "setmetatable(\%inst, CLASSES[\%classname])"
|
|
|
|
immediately
|
|
|
|
parse [new %classname] as: new %classname {}
|
2018-01-18 01:49:13 -08:00
|
|
|
|
2018-05-30 17:20:22 -07:00
|
|
|
parse [as %instance %body] as
|
|
|
|
lua> "local self;"
|
|
|
|
do
|
|
|
|
using
|
|
|
|
lua> ".."
|
|
|
|
self = \%instance
|
|
|
|
local cls = self.class
|
|
|
|
local old_self = self.class:set_self(self)
|
|
|
|
ACTIONS = cls.ACTIONS
|
|
|
|
COMPILE_ACTIONS = cls.COMPILE_ACTIONS
|
|
|
|
ARG_ORDERS = cls.ARG_ORDERS
|
|
|
|
..do
|
|
|
|
%body
|
|
|
|
..then always
|
|
|
|
lua> ".."
|
|
|
|
self.class:set_self(old_self)
|
2018-05-24 14:57:24 -07:00
|
|
|
|
2018-05-30 17:20:22 -07:00
|
|
|
parse [object %classname %class_body] as
|
|
|
|
using
|
|
|
|
%cls <- {..}
|
|
|
|
name:%classname
|
|
|
|
ACTIONS:=lua "ACTIONS", COMPILE_ACTIONS:=lua "COMPILE_ACTIONS"
|
|
|
|
ARG_ORDERS:=lua "ARG_ORDERS"
|
|
|
|
(=lua "CLASSES").%classname <- %cls
|
2018-01-18 01:49:13 -08:00
|
|
|
lua> ".."
|
2018-05-30 17:20:22 -07:00
|
|
|
setmetatable(\%cls, {__tostring=function() return \%classname end})
|
|
|
|
local self = nil
|
|
|
|
\%cls.set_self = function(_, inst)
|
|
|
|
local old_self = self
|
|
|
|
self = inst
|
|
|
|
return old_self
|
|
|
|
end
|
|
|
|
\%cls.__index = \%cls
|
|
|
|
\%cls.class = \%cls
|
|
|
|
%class_body
|
|
|
|
run ".."
|
|
|
|
action [new \%classname %inst]
|
|
|
|
say "NEWING"
|
|
|
|
return: =lua "setmetatable(\\%inst, \\%cls)"
|
|
|
|
lua> ".."
|
|
|
|
if ACTIONS["as text"] then
|
|
|
|
\%cls.__tostring = ACTIONS["as text"]
|
2018-05-24 14:57:24 -07:00
|
|
|
end
|