handle column number in javac linter (#660)

* handle column number in javac linter

* Updated tests with column number for javac errors.

* Updated tests with column number for javac errors.
This commit is contained in:
oaue
2017-06-19 12:45:09 +02:00
committed by w0rp
parent 66b9d025bb
commit b44bd4e24f
2 changed files with 8 additions and 2 deletions

View File

@@ -14,11 +14,13 @@ Execute(The javac handler should handle cannot find symbol errors):
\ },
\ {
\ 'lnum': 2,
\ 'col': 5,
\ 'text': 'error: cannot find symbol: BadName',
\ 'type': 'E',
\ },
\ {
\ 'lnum': 34,
\ 'col': 5,
\ 'text': 'error: cannot find symbol: BadName2',
\ 'type': 'E',
\ },
@@ -29,6 +31,7 @@ Execute(The javac handler should handle cannot find symbol errors):
\ },
\ {
\ 'lnum': 42,
\ 'col': 11,
\ 'text': 'error: cannot find symbol: bar()',
\ 'type': 'E',
\ },