diff options
author | Bram Moolenaar <Bram@vim.org> | 2017-12-07 22:11:27 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2017-12-07 22:11:27 +0100 |
commit | 6e65d594aa33be11f6074f26e9ff81b52504c62b (patch) | |
tree | a3c542e974c6c576792e6b3c7541907926e1b445 /src/testdir/sautest | |
parent | 23c1b2b018c8121ca5fcc247e37966428bf8ca66 (diff) | |
download | vim-git-6e65d594aa33be11f6074f26e9ff81b52504c62b.tar.gz |
patch 8.0.1377: cannot call a dict function in autoloaded dictv8.0.1377
Problem: Cannot call a dict function in autoloaded dict.
Solution: Call get_lval() passing the read-only flag.
Diffstat (limited to 'src/testdir/sautest')
-rw-r--r-- | src/testdir/sautest/autoload/foo.vim | 7 | ||||
-rw-r--r-- | src/testdir/sautest/autoload/globone.vim | 1 | ||||
-rw-r--r-- | src/testdir/sautest/autoload/globtwo.vim | 1 |
3 files changed, 9 insertions, 0 deletions
diff --git a/src/testdir/sautest/autoload/foo.vim b/src/testdir/sautest/autoload/foo.vim new file mode 100644 index 000000000..d7dcd5ce3 --- /dev/null +++ b/src/testdir/sautest/autoload/foo.vim @@ -0,0 +1,7 @@ +let g:loaded_foo_vim += 1 + +let foo#bar = {} + +func foo#bar.echo() + let g:called_foo_bar_echo += 1 +endfunc diff --git a/src/testdir/sautest/autoload/globone.vim b/src/testdir/sautest/autoload/globone.vim new file mode 100644 index 000000000..98c9a1058 --- /dev/null +++ b/src/testdir/sautest/autoload/globone.vim @@ -0,0 +1 @@ +" used by Test_globpath() diff --git a/src/testdir/sautest/autoload/globtwo.vim b/src/testdir/sautest/autoload/globtwo.vim new file mode 100644 index 000000000..98c9a1058 --- /dev/null +++ b/src/testdir/sautest/autoload/globtwo.vim @@ -0,0 +1 @@ +" used by Test_globpath() |