Skip to content

Hide meta methods #19

Description

@Shadowblitz16

Consider hiding the meta methods.
Maybe something like this..

local Object   = {}
local Meta     =
{
	__call  = function(self, ...)
		local obj = setmetatable({}, self)
		obj:new(...)
		return obj
	end,
	
	__tostring = function(self)
	  return "Object"
	end,
	
	__index = Object
}
setmetatable(Object, Meta)

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions