view src/testdir/test_eval_func.vim @ 17972:a170c48e0f91 v8.1.1982

patch 8.1.1982: more functions can be used as methods Commit: https://github.com/vim/vim/commit/6a124e622cfe52619781c6a02119177a44d09210 Author: Bram Moolenaar <Bram@vim.org> Date: Wed Sep 4 18:15:19 2019 +0200 patch 8.1.1982: more functions can be used as methods Problem: More functions can be used as methods. Solution: Make popup functions usable as a method.
author Bram Moolenaar <Bram@vim.org>
date Wed, 04 Sep 2019 18:30:03 +0200
parents 63b02fcf1361
children
line wrap: on
line source

" Vim script used in test_eval.in.  Needed for script-local function.

func s:Testje()
  return "foo"
endfunc
let Bar = function('s:Testje')
$put ='s:Testje exists: ' . exists('s:Testje')
$put ='func s:Testje exists: ' . exists('*s:Testje')
$put ='Bar exists: ' . exists('Bar')
$put ='func Bar exists: ' . exists('*Bar')