-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This is an improvement over the status quo of forked Javac error parsing, but likely not a complete fix. "Normal" Java error messages look like: ``` /path/a.java:100:1: error message if (x.isBar) { ^ symbol: xxx location: xxx ``` However, under certain circumstances javac reports compiler errors are reported as: ``` /path/a.java:100:1: error message symbol: xxx location: xxx if (x.isBar) { ``` Current parsing assumes existence of `^` as well as indentation before "symbol" etc. Ultimately a better way of handling forking probably is to define our own small commandline app, like forked tests are done.
- Loading branch information
Showing
4 changed files
with
107 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters