diff --git a/pkg/infrastructure/ast/ast_typescript/typescript_ident_listener.go b/pkg/infrastructure/ast/ast_typescript/typescript_ident_listener.go index 6e87bec77b9d3319ac8d4e864367e1f3fa368a57..33f51138e3eed1235eba559c5e1f68dda52cb6c4 100644 --- a/pkg/infrastructure/ast/ast_typescript/typescript_ident_listener.go +++ b/pkg/infrastructure/ast/ast_typescript/typescript_ident_listener.go @@ -99,9 +99,6 @@ func BuildInterfaceTypeBody(ctx *parser.TypeMemberListContext, dataStruct *core_ case *parser.PropertySignatureContext: BuildInterfacePropertySignature(x, dataStruct) case *parser.MethodSignatureContext: - method := core_domain.NewJMethod() - method.Name = x.PropertyName().GetText() - function := core_domain.CodeFunction{ Name: x.PropertyName().GetText(), }