comparison src/proto.h @ 31335:5acc0d2cf4f7 v9.0.1001

patch 9.0.1001: classes are not documented or implemented yet Commit: https://github.com/vim/vim/commit/c1c365c1ca4881488c4fc419b4d5e579b89ef2ed Author: Bram Moolenaar <Bram@vim.org> Date: Sun Dec 4 20:13:24 2022 +0000 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.
author Bram Moolenaar <Bram@vim.org>
date Sun, 04 Dec 2022 21:15:07 +0100
parents 4f1e70a709bb
children
comparison
equal deleted inserted replaced
31334:c7700a3aee9b 31335:5acc0d2cf4f7
213 # include "version.pro" 213 # include "version.pro"
214 # include "vim9script.pro" 214 # include "vim9script.pro"
215 # ifdef FEAT_EVAL 215 # ifdef FEAT_EVAL
216 // include vim9.h here, the types defined there are used by function arguments. 216 // include vim9.h here, the types defined there are used by function arguments.
217 # include "vim9.h" 217 # include "vim9.h"
218 # include "vim9class.pro"
218 # include "vim9cmds.pro" 219 # include "vim9cmds.pro"
219 # include "vim9compile.pro" 220 # include "vim9compile.pro"
220 # include "vim9execute.pro" 221 # include "vim9execute.pro"
221 # include "vim9expr.pro" 222 # include "vim9expr.pro"
222 # include "vim9instr.pro" 223 # include "vim9instr.pro"