Mercurial > vim
view runtime/compiler/rhino.vim @ 22431:685909aa5641 v8.2.1764
patch 8.2.1764: Vim9: no error when assigning to script var with wrong type
Commit: https://github.com/vim/vim/commit/06f9c6940a88d132c85eb2a1b5034fa7653518ce
Author: Bram Moolenaar <Bram@vim.org>
Date: Sun Sep 27 21:27:40 2020 +0200
patch 8.2.1764: Vim9: no error when assigning to script var with wrong type
Problem: Vim9: no error when assigning to script var with wrong type.
Solution: Fix off-by-one error. (closes https://github.com/vim/vim/issues/7028)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sun, 27 Sep 2020 21:30:08 +0200 |
parents | d4c7b3e9cd17 |
children | e1df51f68736 |
line wrap: on
line source
" Vim compiler file " Compiler: Rhino Shell (JavaScript in Java) " Maintainer: Doug Kearns <dougkearns@gmail.com> " Last Change: 2019 Jul 10 if exists("current_compiler") finish endif let current_compiler = "rhino" 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=java\ -jar\ lib/rhino-X.X.XX.jar\ -w\ -strict CompilerSet makeprg=rhino CompilerSet errorformat=%-Gjs:\ %.%#Compilation\ produced%.%#, \%Ejs:\ \"%f\"\\,\ line\ %l:\ %m, \%Ejs:\ uncaught\ JavaScript\ runtime\ exception:\ %m, \%Wjs:\ warning:\ \"%f\"\\,\ line\ %l:\ %m, \%Zjs:\ %p^, \%Cjs:\ %.%#, \%-G%.%# let &cpo = s:cpo_save unlet s:cpo_save