Consider the following:
trait One {
def foo() {}
}
trait Two {
def foo() {}
}
class Three implements One, Two {
def bar() {
fo|
}
}
Content assist (Ctrl+Space) at | should show 3 proposals for foo(). When accepting the proposal foo() : Object - One, the insertion should be One.super.foo(). When accepting the proposal foo() : Object - Two, the insertion could be Two.super.foo() or just foo().
Consider the following:
Content assist (Ctrl+Space) at
|should show 3 proposals forfoo(). When accepting the proposalfoo() : Object - One, the insertion should beOne.super.foo(). When accepting the proposalfoo() : Object - Two, the insertion could beTwo.super.foo()or justfoo().