view runtime/compiler/dart2js.vim @ 23354:611e19cd237d v8.2.2220

patch 8.2.2220: Vim9: memory leak when parsing nested parenthesis Commit: https://github.com/vim/vim/commit/e5730bdcea0d4b574835f94b9813f80316590db9 Author: Bram Moolenaar <Bram@vim.org> Date: Fri Dec 25 22:30:16 2020 +0100 patch 8.2.2220: Vim9: memory leak when parsing nested parenthesis Problem: Vim9: memory leak when parsing nested parenthesis. Solution: Clear newargs.
author Bram Moolenaar <Bram@vim.org>
date Fri, 25 Dec 2020 22:45:03 +0100
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