Community
Participate
Working Groups
Simple feature calls are sometimes not get highlighted as extension method. @Inject extension MyExtension // defines doStuff(String x) def foo(String it) { doStuff //not colored as extension method }
Unfortunately I am not able to reproduce this. With this example the invocation of doStuff is highlighted. Xtend-class package foo import com.google.inject.Inject class Foo { @Inject extension Bar def foo(String it){ doStuff <--- is highlighted as extension } } Java-class package foo; public class Bar { public String doStuff(String a){ return a; } } Sven, could you please attach your example?
This was due to an unintuitive linking resolution. Bug #367058 should help with this.
Closing all bugs that were set to RESOLVED before Neon.0