Open
Description
When attempting hyperlinking on the following route file with the corresponding controllers:
GET / @controllers.Application.index
class Application extends Controller {
def index = Action { ... }
}
object Application extends Controller {
def index = Action { ... }
}
hyperlinking will bring you to the object instead of the class. It would be nice if hyperlinking was smarter and accounted for the fact that the leading @
signifies a class.