I don´t now if this is the right thread but I must say that there is a very big thing missing in expresso sugars an that is autocomplete feature for class properties and methods.
Bellow is some code sample of actionscript 3 code I could illustrated it with a php class to but I think you get what looking for:
package
{
public class foo
{
public str:string = "test";
public function output():string
{
return "Im a string";
}
}
}
var c = new foo();
c. <—- pressing . should give me an autocomplete list of all public methods / properties in my “foo” class.
—- str:String
—- output returns String
Im wondering is there anything inside the sugar api to do this ?
This is for me truly the missing feature that is standard in modern code editors plz don´t overlook this as it is needed.
Best regards
Nic