Skip to content

[Question/Request] Parameter names and default arguments empty for Loaded Modules #51

Description

@OriolCS2

Hello! I have a ".as" file thas has a class with this method:

string GetString(const string&in key, const string&in defaultValue = "") const

and when I load it and then I request its declaration I get this:

string GetString(const string&in, const string&in) const

I don't know if I'm missing something, it is not implemented or it is a bug. I was expecting to get the declaration as:

string GetString(const string&in key, const string&in defaultValue = "") const

Parameter names and default arguments are missing.

This works fine when requesting the declaration of a method that has been registered via c++ and not loaded as a module from a script.

PD: I need this because the static analizer code tool when programming is expecting the argument when it shouldn't.

Image

This compiles fine, so there is no problem but it would be amazing to be able to get that metadata as well when compiling the code as a module and not registering via c++!

Thanks!

Metadata

Metadata

Assignees

Labels

bugSomething isn't working

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions