Mercurial > vim
annotate runtime/compiler/dart2native.vim @ 23911:30e3a7a33b66 v8.2.2498
patch 8.2.2498: no test for what 8.2.2494 fixes
Commit: https://github.com/vim/vim/commit/5affc034680a95eabfbfca763bedf86ae0a79c44
Author: Bram Moolenaar <Bram@vim.org>
Date: Thu Feb 11 18:36:30 2021 +0100
patch 8.2.2498: no test for what 8.2.2494 fixes
Problem: No test for what 8.2.2494 fixes.
Solution: Add a simple change to test the fix. (closes https://github.com/vim/vim/issues/7818)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Thu, 11 Feb 2021 18:45:03 +0100 |
parents | d4c7b3e9cd17 |
children | e1df51f68736 |
rev | line source |
---|---|
22171 | 1 " Vim compiler file |
2 " Compiler: Dart to Native Compiler | |
3 " Maintainer: Doug Kearns <dougkearns@gmail.com> | |
4 " Last Change: 2019 May 08 | |
5 | |
6 if exists("current_compiler") | |
7 finish | |
8 endif | |
9 let current_compiler = "dart2native" | |
10 | |
11 if exists(":CompilerSet") != 2 " older Vim always used :setlocal | |
12 command -nargs=* CompilerSet setlocal <args> | |
13 endif | |
14 | |
15 let s:cpo_save = &cpo | |
16 set cpo&vim | |
17 | |
18 CompilerSet makeprg=dart2native | |
19 CompilerSet errorformat=%E%f:%l:%c:\ Error:\ %m, | |
20 \%CTry\ %.%#, | |
21 \%Z\ %#^%\\+, | |
22 \%Z%$, | |
23 \%C%.%#, | |
24 \%E%f:\ %trror:\ %m, | |
25 \%-G%.%# | |
26 | |
27 let &cpo = s:cpo_save | |
28 unlet s:cpo_save |