summaryrefslogtreecommitdiffstats
path: root/src/testdir/test_autoload.vim
AgeCommit message (Collapse)Author
2019-08-04patch 8.1.1816: cannot use a user defined function as a methodv8.1.1816Bram Moolenaar
Problem: Cannot use a user defined function as a method. Solution: Pass the base as the first argument to the user defined function after "->". (partly by FUJIWARA Takuya)
2017-12-07patch 8.0.1378: autoload script sources itself when defining functionv8.0.1378Bram Moolenaar
Problem: Autoload script sources itself when defining function. Solution: Pass TFN_NO_AUTOLOAD to trans_function_name(). (Yasuhiro Matsumoto, closes #2423)
2017-12-07patch 8.0.1377: cannot call a dict function in autoloaded dictv8.0.1377Bram Moolenaar
Problem: Cannot call a dict function in autoloaded dict. Solution: Call get_lval() passing the read-only flag.