You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you have the following scala class in the default package:
class Application extends Controller {
def index = Action {
Ok("hello")
}
}
after completing for Application, completion will not work on its members.
However, it should first be further investigated to see if play supports action methods coming from these type of sources (classes, objects, and package objects in the default package) before implementing a fix. If play does not support them, then perhaps modules/classes/package-objects in the default package should not appear in the autocompletion suggestion list.
The text was updated successfully, but these errors were encountered:
If you have the following scala class in the default package:
after completing for
Application
, completion will not work on its members.However, it should first be further investigated to see if play supports action methods coming from these type of sources (classes, objects, and package objects in the default package) before implementing a fix. If play does not support them, then perhaps modules/classes/package-objects in the default package should not appear in the autocompletion suggestion list.
The text was updated successfully, but these errors were encountered: