summaryrefslogtreecommitdiffstats
path: root/src/testdir/test_cmdmods.vim
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2022-12-04 20:13:24 +0000
committerBram Moolenaar <Bram@vim.org>2022-12-04 20:13:24 +0000
commitc1c365c1ca4881488c4fc419b4d5e579b89ef2ed (patch)
treed32cb77aace1caf8261fa347a4cebe8ae45cc8d2 /src/testdir/test_cmdmods.vim
parentb21b8e9ed081a6ef6b6745fe65d219b3ac046c3b (diff)
patch 9.0.1001: classes are not documented or implemented yetv9.0.1001
Problem: Classes are not documented or implemented yet. Solution: Make the first steps at documenting Vim9 objects, classes and interfaces. Make initial choices for the syntax. Add a skeleton implementation. Add "public" and "this" in the command table.
Diffstat (limited to 'src/testdir/test_cmdmods.vim')
-rw-r--r--src/testdir/test_cmdmods.vim10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/testdir/test_cmdmods.vim b/src/testdir/test_cmdmods.vim
index d5a4e935cd..323a78e4a0 100644
--- a/src/testdir/test_cmdmods.vim
+++ b/src/testdir/test_cmdmods.vim
@@ -15,6 +15,16 @@ def Test_cmdmods_array()
lines = getline(top, bot)
var mods = lines->map((_, v) => substitute(v, '.*"\(\k*\)".*', '\1', ''))
+ # Add the other commands that use ex_wrongmodifier.
+ mods->extend([
+ 'endclass',
+ 'endenum',
+ 'endinterface',
+ 'public',
+ 'static',
+ 'this',
+ ])
+
# Check the lists are equal. Convert them to a dict to get a clearer error
# message.
var cmds_dict = {}