Hi there!
Does anybody know how I can get code assist in IntelliJ if I return an array of a component?
For example:
component {
public void function init() {
var array = getAll();
for(item in array) {
WriteDump( item.myMethod() ); // <-- no code assist here
}
}
private MyComponent[] function getAll() {
return ORMExecuteQuery("from MyComponent");
}
}
Thanks for your help!