You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now we need to call addProperties in ScriptRunner to find out if the API is a property or a method... this is error prone (like forgetting to add the addProperty).
It would be better to do that automatically. One idea would be to do that during the LOG macro, as we have access to all information (and even an instance of the class maybe to get the metaObject).
Another option would be to do that during the compilation, but it may be more complex...
The text was updated successfully, but these errors were encountered:
Right now we need to call
addProperties
inScriptRunner
to find out if the API is a property or a method... this is error prone (like forgetting to add theaddProperty
).It would be better to do that automatically. One idea would be to do that during the
LOG
macro, as we have access to all information (and even an instance of the class maybe to get the metaObject).Another option would be to do that during the compilation, but it may be more complex...
The text was updated successfully, but these errors were encountered: