fix(entity): remove `constructor_param_record`
This commit is contained in:
parent
4a10957c57
commit
755d0d6b11
|
@ -9,8 +9,7 @@ local record Module_Doc
|
|||
|
||||
record_name: string
|
||||
|
||||
constructors: List<Function_Info.Function_Info> -- Translates to a list of methods
|
||||
constructor_param_record: List<Variable_Info.Variable_Info> -- Constructor with the __call metamethod and named parameters pattern
|
||||
constructors: List<Function_Info.Function_Info>
|
||||
|
||||
methods: List<Function_Info.Function_Info>
|
||||
properties: List<Variable_Info.Variable_Info>
|
||||
|
@ -22,7 +21,6 @@ local __Module_Doc: metatable<Module_Doc> = {
|
|||
__call = function(_: Module_Doc): Module_Doc
|
||||
return {
|
||||
constructors = List(),
|
||||
constructor_param_record = List(),
|
||||
methods = List(),
|
||||
properties = List(),
|
||||
static_functions = List(),
|
||||
|
|
Loading…
Reference in New Issue