Last active
October 9, 2021 14:29
-
-
Save HallexCosta/9f6dd69f45fc7cf38dcc05f00302c415 to your computer and use it in GitHub Desktop.
Generate a new instance in lua
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
local MyClass = {} | |
MyClass.__index = MyClass | |
setmetatable(MyClass, { | |
__call = function (cls, ...) | |
return cls.new(...) | |
end, | |
}) | |
function MyClass.new(init) | |
local self = setmetatable(init, MyClass) | |
return self | |
end | |
-- the : syntax here causes a "self" arg to be implicitly added before any other args | |
function MyClass:set_value(newval) | |
self.value = newval | |
end | |
function MyClass:get_value() | |
return self.value | |
end | |
local instance = MyClass.new({ | |
node = true, | |
npm = true | |
}) | |
-- do stuff with instance... | |
for k, v in pairs(instance) do | |
print(k, v) | |
end | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment