What is the correct way to create a method reference in the same class? Scaladoc documentation has no examples of this.
Consider a class such as:
package controllers // import ... class AccountController extends Controller with Secured { def current = Authenticated() { request => // ... } def findAll = Authenticated() { request => // ... } }
IntelliJ IDEA displays "quick documentation", all of which appear as red:
[[current]][[#current]][[AccountController.current]][[AccountController#current]][[controllers.AccountController.current]]

This appears as blue:
[[controllers.AccountController#current]]
So, I suppose this is correct, but is there a simpler but more correct way?
Jonik source share