view runtime/compiler/dart2js.vim @ 28946:e78e398fff3d v8.2.4995

patch 8.2.4995: still a compiler warning for possibly uninitialized variable Commit: https://github.com/vim/vim/commit/dafef51b1cbe8aa836c4cfa52623f775bd85a190 Author: Bram Moolenaar <Bram@vim.org> Date: Sat May 21 21:55:55 2022 +0100 patch 8.2.4995: still a compiler warning for possibly uninitialized variable Problem: Still a compiler warning for possibly uninitialized variable. (Tony Mechelynck) Solution: Initialize variables.
author Bram Moolenaar <Bram@vim.org>
date Sat, 21 May 2022 23:00:03 +0200
parents d4c7b3e9cd17
children e1df51f68736
line wrap: on
line source

" Vim compiler file
" Compiler:	Dart to JavaScript Compiler
" Maintainer:	Doug Kearns <dougkearns@gmail.com>
" Last Change:	2019 May 08

if exists("current_compiler")
  finish
endif
let current_compiler = "dart2js"

if exists(":CompilerSet") != 2		" older Vim always used :setlocal
  command -nargs=* CompilerSet setlocal <args>
endif

let s:cpo_save = &cpo
set cpo&vim

CompilerSet makeprg=dart2js
CompilerSet errorformat=%E%f:%l:%c:,
		       \%-GError:\ Compilation\ failed.,
		       \%CError:\ %m,
		       \%Z\ %#^%\\+,
		       \%C%.%#,
		       \%trror:\ %m,
		       \%-G%.%#

let &cpo = s:cpo_save
unlet s:cpo_save