From c1c365c1ca4881488c4fc419b4d5e579b89ef2ed Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Sun, 4 Dec 2022 20:13:24 +0000 Subject: patch 9.0.1001: classes are not documented or implemented yet 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. --- src/Make_vms.mms | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/Make_vms.mms') 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 \ -- cgit v1.2.3