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
e.g. super class has a method 'someMethod(String str)'. User writes 'som' while editing inherited class and autocomplete provides boilerplate implementation as a snippet. Snippet also includes the @OverRide annotation.
Dictionary does not currently contain information about inheritance. Implement:
Add information about inheritance to dictionary: JavaClassReader.readClassesByName() and JavaClassLoader._addClass()
Snippets as suggestions: AtomAutocompleteProvider.getSuggestions()
The text was updated successfully, but these errors were encountered:
Additionally provide boilerplate implementation of constructor as a snippet: e.g. user writes 'MyCla..' in a class called 'MyClass' and autocomplete provides boilerplate implementation for constructor as a snippet. Constructor parameters are determined from superclass constructor and private fields of the class.
e.g. super class has a method 'someMethod(String str)'. User writes 'som' while editing inherited class and autocomplete provides boilerplate implementation as a snippet. Snippet also includes the @OverRide annotation.
Dictionary does not currently contain information about inheritance. Implement:
The text was updated successfully, but these errors were encountered: