syntastic/syntax_checkers/dart/dart_analyzer.vim
LCD 47 6d81ac5dd0 Registry cleanup, stage 3.
Make syntastic#makeprg#build() a dictionary function.
Remove the mandatory checker argument to syntastic#makeprg#build().
2013-11-02 10:44:06 +02:00

59 lines
2.2 KiB
VimL

"============================================================================
"File: dart_analyzer.vim
"Description: Dart syntax checker - using dart_analyzer
"Maintainer: Maksim Ryzhikov <rv.maksim at gmail dot com>
"License: This program is free software. It comes without any warranty,
" to the extent permitted by applicable law. You can redistribute
" it and/or modify it under the terms of the Do What The Fuck You
" Want To Public License, Version 2, as published by Sam Hocevar.
" See http://sam.zoy.org/wtfpl/COPYING for more details.
"============================================================================
if exists("g:loaded_syntastic_dart_dart_analyzer_checker")
finish
endif
let g:loaded_syntastic_dart_dart_analyzer_checker=1
if !exists("g:syntastic_dart_analyzer_conf")
let g:syntastic_dart_analyzer_conf = ''
endif
function! SyntaxCheckers_dart_dart_analyzer_GetHighlightRegex(error)
let lcol = a:error['col'] - 1
let rcol = a:error['nr'] + lcol + 1
return '\%>'.lcol.'c\%<'.rcol.'c'
endfunction
function! SyntaxCheckers_dart_dart_analyzer_GetLocList() dict
let makeprg = self.makeprgBuild({
\ 'args': '--error_format machine',
\ 'post_args': g:syntastic_dart_analyzer_conf })
" Machine readable format looks like:
" SEVERITY|TYPE|ERROR_CODE|file:FILENAME|LINE_NUMBER|COLUMN|LENGTH|MESSAGE
" SEVERITY: (WARNING|ERROR)
" TYPE: (RESOLVER|STATIC_TYPE|...)
" ERROR_CODE: (NO_SUCH_TYPE|...)
" FILENAME: String
" LINE_NUMBER: int
" COLUMN: int
" LENGHT: int
" MESSAGE: String
" We use %n to grab the error length to be able to access it in the matcher.
let commonformat = '|%.%#|%.%#|file:%f|%l|%c|%n|%m'
" TODO(amouravski): simply take everything after ERROR|WARNING as a message
" and then parse it by hand later.
let errorformat = '%EERROR'.l:commonformat.','.
\'%WWARNING'.l:commonformat
return SyntasticMake({
\ 'makeprg': makeprg,
\ 'errorformat': errorformat })
endfunction
call g:SyntasticRegistry.CreateAndRegisterChecker({
\ 'filetype': 'dart',
\ 'name': 'dart_analyzer'})