Skip to content

Instantly share code, notes, and snippets.

@HallexCosta
Last active October 9, 2021 14:29
Show Gist options
  • Save HallexCosta/9f6dd69f45fc7cf38dcc05f00302c415 to your computer and use it in GitHub Desktop.
Save HallexCosta/9f6dd69f45fc7cf38dcc05f00302c415 to your computer and use it in GitHub Desktop.
Generate a new instance in lua
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