Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix error ranges and ids for "superclass lacks noargs constructor"
eg. ```java public class Superclass { public Superclass(int i) { } } ``` ```java public class Subclass extends Superclass { } ``` An error is issued; this PR ensures that the range covers the text `Subclass`, which fixes the quickfix to add a constructor when it's invoked from the beginning of the line. Signed-off-by: David Thompson <[email protected]>
- Loading branch information