Skip to content

Commit

Permalink
Merge pull request #467 from adriaanzon/php-fix-double-errors
Browse files Browse the repository at this point in the history
PHP: Fix double errors and support fatal errors
  • Loading branch information
w0rp committed Apr 12, 2017
1 parent a55f941 commit a1932b7
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ale_linters/php/php.vim
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
" Author: Spencer Wood <https://github.com/scwood>
" Author: Spencer Wood <https://github.com/scwood>, Adriaan Zonnenberg <[email protected]>
" Description: This file adds support for checking PHP with php-cli

function! ale_linters#php#php#Handle(buffer, lines) abort
" Matches patterns like the following:
"
" PHP Parse error: syntax error, unexpected ';', expecting ']' in - on line 15
let l:pattern = '\vParse error:\s+(.+unexpected ''(.+)%(expecting.+)@<!''.*|.+) in - on line (\d+)'
let l:pattern = '\vPHP %(Fatal|Parse) error:\s+(.+unexpected ''(.+)%(expecting.+)@<!''.*|.+) in - on line (\d+)'

let l:output = []

Expand Down
10 changes: 10 additions & 0 deletions test/handler/test_php_handler.vader
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ Given (Some invalid lines of PHP):
class Foo { / }
$foo)
['foo' 'bar']
function count() {}

Execute(The php handler should parse lines correctly):
runtime ale_linters/php/php.vim
Expand Down Expand Up @@ -39,6 +40,13 @@ Execute(The php handler should parse lines correctly):
\ },
\ {
\ 'bufnr': 347,
\ 'lnum': 5,
\ 'col': 0,
\ 'text': "Cannot redeclare count()",
\ 'type': 'E',
\ },
\ {
\ 'bufnr': 347,
\ 'lnum': 21,
\ 'col': 0,
\ 'text': "syntax error, unexpected end of file",
Expand All @@ -54,10 +62,12 @@ Execute(The php handler should parse lines correctly):
\ ],
\ ale_linters#php#php#Handle(347, [
\ 'This line should be ignored completely',
\ "Parse error: syntax error, This line should be ignored completely in - on line 1",
\ "PHP Parse error: syntax error, unexpected ';', expecting ']' in - on line 1",
\ "PHP Parse error: syntax error, unexpected '/', expecting function (T_FUNCTION) or const (T_CONST) in - on line 2",
\ "PHP Parse error: syntax error, unexpected ')' in - on line 3",
\ "PHP Parse error: syntax error, unexpected ''bar'' (T_CONSTANT_ENCAPSED_STRING), expecting ']' in - on line 4",
\ "PHP Fatal error: Cannot redeclare count() in - on line 5",
\ 'PHP Parse error: syntax error, unexpected end of file in - on line 21',
\ 'PHP Parse error: Invalid numeric literal in - on line 47',
\ ])
Expand Down

0 comments on commit a1932b7

Please sign in to comment.