summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorw0rp <w0rp@users.noreply.github.com>2017-04-12 23:58:01 +0100
committerw0rp <devw0rp@gmail.com>2017-04-12 23:58:58 +0100
commita1932b7ff5517225ed364f18c6e4d9c752a87672 (patch)
treea03f3a81773d64b3b1c524721e7d1cb4a561cd5f
parenta55f94134985fe8fa052f0d0ff9329e77319eeac (diff)
downloadale-a1932b7ff5517225ed364f18c6e4d9c752a87672.zip
Merge pull request #467 from adriaanzon/php-fix-double-errors
PHP: Fix double errors and support fatal errors
-rw-r--r--ale_linters/php/php.vim4
-rw-r--r--test/handler/test_php_handler.vader10
2 files changed, 12 insertions, 2 deletions
diff --git a/ale_linters/php/php.vim b/ale_linters/php/php.vim
index ebc21ea3..3f354de5 100644
--- a/ale_linters/php/php.vim
+++ b/ale_linters/php/php.vim
@@ -1,11 +1,11 @@
-" Author: Spencer Wood <https://github.com/scwood>
+" Author: Spencer Wood <https://github.com/scwood>, Adriaan Zonnenberg <amz@adriaan.xyz>
" 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 = []
diff --git a/test/handler/test_php_handler.vader b/test/handler/test_php_handler.vader
index bf6d45cc..e7c5dc29 100644
--- a/test/handler/test_php_handler.vader
+++ b/test/handler/test_php_handler.vader
@@ -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
@@ -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",
@@ -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',
\ ])