fix(entity): remove `constructor_param_record`
ci/woodpecker/pr/build Pipeline was successful Details
ci/woodpecker/pr/docker-build Pipeline was successful Details
ci/woodpecker/pr/lint Pipeline was successful Details

This commit is contained in:
Aire-One 2022-12-09 21:36:38 +01:00
parent 4a10957c57
commit 755d0d6b11
1 changed files with 1 additions and 3 deletions

View File

@ -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(),