diff options
author | Thomas A. Werne <werneta@gmail.com> | 2019-10-05 10:44:02 -0700 |
---|---|---|
committer | Thomas A. Werne <werneta@gmail.com> | 2019-10-05 10:44:02 -0700 |
commit | 98b0dcd7d6ff51685c7b2d5d782bcbec1e8e5a58 (patch) | |
tree | 5aec5df726c45987ba643202b410baba164c109f /ale_linters/verilog | |
parent | a486aa1d24294c5b14c8b2763a3b5ffdc39d0739 (diff) | |
download | ale-98b0dcd7d6ff51685c7b2d5d782bcbec1e8e5a58.zip |
Update vlog parser to handle new output format
Re #2812, the parser now takes a second pass through the output using an
updated regex.
Diffstat (limited to 'ale_linters/verilog')
-rw-r--r-- | ale_linters/verilog/vlog.vim | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/ale_linters/verilog/vlog.vim b/ale_linters/verilog/vlog.vim index 37d21c4c..ad160111 100644 --- a/ale_linters/verilog/vlog.vim +++ b/ale_linters/verilog/vlog.vim @@ -24,6 +24,20 @@ function! ale_linters#verilog#vlog#Handle(buffer, lines) abort \}) endfor + "Matches patterns like the following: + "** Warning: (vlog-2623) add.v(7): Undefined variable: C. + "** Error: (vlog-13294) file.v(1): Identifier must be declared with a port mode: C. + " let l:pattern = '^**\s\(\w*\):[a-zA-Z0-9\-\.\_\/ ]\+(\(\d\+\)):\s\+\(.*\)' + let l:pattern = '^**\s\(\w*\):\s\([^)]*)\)[a-zA-Z0-9\-\.\_\/ ]\+(\(\d\+\)):\s\+\(.*\)' + + for l:match in ale#util#GetMatches(a:lines, l:pattern) + call add(l:output, { + \ 'lnum': l:match[3] + 0, + \ 'type': l:match[1] is? 'Error' ? 'E' : 'W', + \ 'text': l:match[2] . " " . l:match[4], + \}) + endfor + return l:output endfunction |