Home | History | Annotate | Download | only in lua

Lines Matching refs:constructor

155   lua_CFunction  constructor;
714 /* Constructor proxy. Used when class name entry in module is not class constructor,
720 Other we should pass to real constructor
723 lua_pushstring(L,".constructor");
726 lua_replace(L,1); /* replace our table with real constructor */
843 /* Register class static methods,attributes etc as well as constructor proxy */
855 /* add its constructor to module with the name of the class
857 BUT only if a constructor is defined
859 if (clss->constructor)
861 SWIG_Lua_add_function(L,".constructor", clss->constructor);