mirror of https://github.com/dense-analysis/ale
Fix PHP linter to support PHP 7.2 lint output
This commit is contained in:
parent
d2a6d9a915
commit
78d1f5f5df
|
@ -4,12 +4,14 @@
|
||||||
function! ale_linters#php#php#Handle(buffer, lines) abort
|
function! ale_linters#php#php#Handle(buffer, lines) abort
|
||||||
" Matches patterns like the following:
|
" Matches patterns like the following:
|
||||||
"
|
"
|
||||||
" Parse error: syntax error, unexpected ';', expecting ']' in - on line 15
|
" PHP 7.1<= - Parse error: syntax error, unexpected ';', expecting ']' in - on line 15
|
||||||
let l:pattern = '\v^%(Fatal|Parse) error:\s+(.+unexpected ''(.+)%(expecting.+)@<!''.*|.+) in - on line (\d+)'
|
" PHP 7.2>= - Parse error: syntax error, unexpected ';', expecting ']' in Standard input code on line 15
|
||||||
|
let l:pattern = '\v^%(Fatal|Parse) error:\s+(.+unexpected ''(.+)%(expecting.+)@<!''.*|.+) in %(-|Standard input code) on line (\d+)'
|
||||||
let l:output = []
|
let l:output = []
|
||||||
|
|
||||||
for l:match in ale#util#GetMatches(a:lines, l:pattern)
|
for l:match in ale#util#GetMatches(a:lines, l:pattern)
|
||||||
let l:col = empty(l:match[2]) ? 0 : stridx(getline(l:match[3]), l:match[2]) + 1
|
let l:col = empty(l:match[2]) ? 0 : stridx(getline(l:match[3]), l:match[2]) + 1
|
||||||
|
|
||||||
let l:obj = {
|
let l:obj = {
|
||||||
\ 'lnum': l:match[3] + 0,
|
\ 'lnum': l:match[3] + 0,
|
||||||
\ 'col': l:col,
|
\ 'col': l:col,
|
||||||
|
|
|
@ -54,6 +54,18 @@ Execute (The php handler should ignore lines starting with 'PHP Parse error'):
|
||||||
\ "PHP Parse error: syntax error, This line should be ignored completely in - on line 1",
|
\ "PHP Parse error: syntax error, This line should be ignored completely in - on line 1",
|
||||||
\ ])
|
\ ])
|
||||||
|
|
||||||
|
Execute (The php handler should handle lines containing 'Standard input code'):
|
||||||
|
AssertEqual
|
||||||
|
\ [
|
||||||
|
\ {
|
||||||
|
\ 'lnum': 47,
|
||||||
|
\ 'col': 0,
|
||||||
|
\ 'text': "Invalid numeric literal",
|
||||||
|
\ },
|
||||||
|
\ ],
|
||||||
|
\ ale_linters#php#php#Handle(347, [
|
||||||
|
\ "Parse error: Invalid numeric literal in Standard input code on line 47",
|
||||||
|
\ ])
|
||||||
Execute (The php handler should parse lines without column indication):
|
Execute (The php handler should parse lines without column indication):
|
||||||
AssertEqual
|
AssertEqual
|
||||||
\ [
|
\ [
|
||||||
|
|
Loading…
Reference in New Issue