summaryrefslogtreecommitdiffstats
path: root/src/Make_vms.mms
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/Make_vms.mms
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/Make_vms.mms')
-rw-r--r--src/Make_vms.mms6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/Make_vms.mms b/src/Make_vms.mms
index 53e1ce15a4..8dd5454e15 100644
--- a/src/Make_vms.mms
+++ b/src/Make_vms.mms
@@ -409,6 +409,7 @@ SRC = \
usercmd.c \
userfunc.c \
version.c \
+ vim9class.c \
vim9cmds.c \
vim9compile.c \
vim9execute.c \
@@ -534,6 +535,7 @@ OBJ = \
usercmd.obj \
userfunc.obj \
version.obj \
+ vim9class.obj \
vim9cmds.obj \
vim9compile.obj \
vim9execute.obj \
@@ -1122,6 +1124,10 @@ viminfo.obj : viminfo.c vim.h [.auto]config.h feature.h os_unix.h \
ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \
gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
errors.h globals.h version.h
+vim9class.obj : vim9class.c vim.h [.auto]config.h feature.h os_unix.h \
+ ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \
+ gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
+ errors.h globals.h version.h
vim9cmds.obj : vim9cmds.c vim.h [.auto]config.h feature.h os_unix.h \
ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \
gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \