commit | 00b28d6c23d8e662cab27e461825777c0a2e387a | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Thu Dec 08 15:32:33 2022 +0000 |
committer | Bram Moolenaar <Bram@vim.org> | Thu Dec 08 15:32:33 2022 +0000 |
tree | ba11ed85b20cf03491e0f24b6d5bf348d2c19388 | |
parent | 038e6d20e680ce8c850d07f6b035c4e1904c1201 [diff] [blame] |
patch 9.0.1031: Vim9 class is not implemented yet Problem: Vim9 class is not implemented yet. Solution: Add very basic class support.
diff --git a/src/vim.h b/src/vim.h index 67751ff..e241da0 100644 --- a/src/vim.h +++ b/src/vim.h
@@ -2120,6 +2120,8 @@ #define VAR_TYPE_CHANNEL 9 #define VAR_TYPE_BLOB 10 #define VAR_TYPE_INSTR 11 +#define VAR_TYPE_CLASS 12 +#define VAR_TYPE_OBJECT 13 #define DICT_MAXNEST 100 // maximum nesting of lists and dicts