#852 Pass on error codes in the loclist corrections
This commit is contained in:
parent
8a3a2da87e
commit
fea708cff3
@ -374,6 +374,10 @@ function! ale#engine#FixLocList(buffer, linter_name, loclist) abort
|
|||||||
\ 'linter_name': a:linter_name,
|
\ 'linter_name': a:linter_name,
|
||||||
\}
|
\}
|
||||||
|
|
||||||
|
if has_key(l:old_item, 'code')
|
||||||
|
let l:item.code = l:old_item.code
|
||||||
|
endif
|
||||||
|
|
||||||
if has_key(l:old_item, 'filename')
|
if has_key(l:old_item, 'filename')
|
||||||
\&& !ale#path#IsTempName(l:old_item.filename)
|
\&& !ale#path#IsTempName(l:old_item.filename)
|
||||||
" Use the filename given.
|
" Use the filename given.
|
||||||
|
@ -327,3 +327,24 @@ Execute(FixLocList should interpret temporary filenames as being the current buf
|
|||||||
\ {'text': 'a', 'lnum': 3, 'filename': b:temp_name},
|
\ {'text': 'a', 'lnum': 3, 'filename': b:temp_name},
|
||||||
\ ],
|
\ ],
|
||||||
\ )
|
\ )
|
||||||
|
|
||||||
|
Execute(The error code should be passed on):
|
||||||
|
AssertEqual
|
||||||
|
\ [
|
||||||
|
\ {
|
||||||
|
\ 'text': 'a',
|
||||||
|
\ 'lnum': 10,
|
||||||
|
\ 'col': 0,
|
||||||
|
\ 'bufnr': bufnr('%'),
|
||||||
|
\ 'vcol': 0,
|
||||||
|
\ 'type': 'E',
|
||||||
|
\ 'nr': -1,
|
||||||
|
\ 'linter_name': 'foobar',
|
||||||
|
\ 'code': 'some-code'
|
||||||
|
\ },
|
||||||
|
\],
|
||||||
|
\ ale#engine#FixLocList(
|
||||||
|
\ bufnr('%'),
|
||||||
|
\ 'foobar',
|
||||||
|
\ [{'text': 'a', 'lnum': 11, 'code': 'some-code'}],
|
||||||
|
\ )
|
||||||
|
Loading…
Reference in New Issue
Block a user