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.
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!
Hello! I have a ".as" file thas has a class with this method:
string GetString(const string&in key, const string&in defaultValue = "") constand when I load it and then I request its declaration I get this:
string GetString(const string&in, const string&in) constI 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 = "") constParameter 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.
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!