Details
Description
Bumping priority here because this will be required for grails usage. I am currently adding support for grails-specific content assist in domain classes. I would like to provide something like this:
class MyDomainClass {
int intField
belo<--here
}
Content assist at <--here should provide a default implementation of the 'belongs' field, but until parser recovery is added here, it cannot.
class Simple { def getNumber() { return 42 } asdf static main(args) { print new Simple().getNumber() } }