Mercurial > vim
view runtime/compiler/se.vim @ 32764:d35204b890af v9.0.1701
patch 9.0.1701: vim9 crash when class member overridden
Commit: https://github.com/vim/vim/commit/57a02ccf4c75a6abb270194c90be926d5221b3ce
Author: Yegappan Lakshmanan <yegappan@yahoo.com>
Date: Sun Aug 13 10:19:38 2023 +0200
patch 9.0.1701: vim9 crash when class member overridden
Problem: vim9 crash when class member overridden
Solution: Use method_count field instead
closes: #12676
closes: #12677
Signed-off-by: Christian Brabandt <cb@256bit.org>
Co-authored-by: Yegappan Lakshmanan <yegappan@yahoo.com>
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Sun, 13 Aug 2023 10:30:07 +0200 |
parents | f7add3891e95 |
children | e1df51f68736 |
line wrap: on
line source
" Vim compiler file " Compiler: se (Liberty Eiffel Compiler) " Maintainer: Doug Kearns <dougkearns@gmail.com> " Last Change: 2013 Jun 29 if exists("current_compiler") finish endif let current_compiler = "se" if exists(":CompilerSet") != 2 " older Vim always used :setlocal command -nargs=* CompilerSet setlocal <args> endif let s:cpo_save = &cpo set cpo-=C CompilerSet makeprg=se\ c CompilerSet errorformat=%W******\ Warning:\ %m, \%E******\ Fatal\ Error:\ %m, \%E******\ Error:\ %m, \%ZLine\ %l\ column\ %c\ in\ %.%#\ (%f)\ %\\=:, \%ZLine\ %l\ columns\ %c\\,\ %\\d%\\+\ %.%#\ (%f)\ %\\=:, \%+C%*[^\ ]%.%#, \%-GThe\ source\ lines\ involved, \%-G%.%# let &cpo = s:cpo_save unlet s:cpo_save