I found the reason why I'm not getting the context menu earlier: it seems classes have to extend other classes (correct?), if I just write
class BetweenCode{
BetweenCode(){
this.CTRL_SPACE
}
}
nothing happens. But if I extend some other class, then obviously, I get the context help associated with that class.
Another question I have is, is there any built-in predicate that i can use to examine the block of code between two points to check to see whether it contains a method call? I don't want to check a whole method or class, simply between two specified calls that may occur in the same class.