summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorYegappan Lakshmanan <yegappan@yahoo.com>2023-12-14 19:59:45 +0100
committerChristian Brabandt <cb@256bit.org>2023-12-14 19:59:45 +0100
commitd2e1c83962d4b392d1876d341c739d204553d01b (patch)
tree221708c71d8501b4e8850eed019b30d0a996955b /src
parent7349c5160ab63d0737050a6b4da3e407ab0cfeb0 (diff)
patch 9.0.2161: Vim9: not able to use imported interfaces and classesv9.0.2161
Problem: Vim9: not able to use imported interfaces and classes Solution: Detect imported class/interfaces names correclty fixes: #13661 closes: #13685 Signed-off-by: Yegappan Lakshmanan <yegappan@yahoo.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
Diffstat (limited to 'src')
-rw-r--r--src/testdir/test_vim9_class.vim56
-rw-r--r--src/version.c2
-rw-r--r--src/vim9class.c24
3 files changed, 79 insertions, 3 deletions
diff --git a/src/testdir/test_vim9_class.vim b/src/testdir/test_vim9_class.vim
index e0f5db6253..c1965880cf 100644
--- a/src/testdir/test_vim9_class.vim
+++ b/src/testdir/test_vim9_class.vim
@@ -3030,6 +3030,62 @@ def Test_class_import()
v9.CheckScriptSuccess(lines)
enddef
+" Test for implementing an imported interface
+def Test_implement_imported_interface()
+ var lines =<< trim END
+ vim9script
+ export interface Imp_Intf1
+ def Fn1(): number
+ endinterface
+ export interface Imp_Intf2
+ def Fn2(): number
+ endinterface
+ END
+ writefile(lines, 'Ximportinterface.vim', 'D')
+
+ lines =<< trim END
+ vim9script
+ import './Ximportinterface.vim' as Xintf
+
+ class A implements Xintf.Imp_Intf1, Xintf.Imp_Intf2
+ def Fn1(): number
+ return 10
+ enddef
+ def Fn2(): number
+ return 20
+ enddef
+ endclass
+ var a = A.new()
+ assert_equal(10, a.Fn1())
+ assert_equal(20, a.Fn2())
+ END
+ v9.CheckScriptSuccess(lines)
+enddef
+
+" Test for extending an imported class
+def Test_extend_imported_class()
+ var lines =<< trim END
+ vim9script
+ export class Imp_C1
+ def Fn1(): number
+ return 5
+ enddef
+ endclass
+ END
+ writefile(lines, 'Xextendimportclass.vim', 'D')
+
+ lines =<< trim END
+ vim9script
+ import './Xextendimportclass.vim' as XClass
+
+ class A extends XClass.Imp_C1
+ endclass
+ var a = A.new()
+ assert_equal(5, a.Fn1())
+ END
+ v9.CheckScriptSuccess(lines)
+enddef
+
def Test_abstract_class()
var lines =<< trim END
vim9script
diff --git a/src/version.c b/src/version.c
index ad5bda644d..a6a54f2270 100644
--- a/src/version.c
+++ b/src/version.c
@@ -705,6 +705,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 2161,
+/**/
2160,
/**/
2159,
diff --git a/src/vim9class.c b/src/vim9class.c
index 4b065c8590..2c5e1dffa3 100644
--- a/src/vim9class.c
+++ b/src/vim9class.c
@@ -1305,6 +1305,24 @@ add_classfuncs_objmethods(
}
/*
+ * Return the end of the class name starting at "arg". Valid characters in a
+ * class name are alphanumeric characters and "_". Also handles imported class
+ * names.
+ */
+ static char_u *
+find_class_name_end(char_u *arg)
+{
+ char_u *end = arg;
+
+ while (ASCII_ISALNUM(*end) || *end == '_'
+ || (*end == '.' && (ASCII_ISALNUM(end[1]) || end[1] == '_')))
+ ++end;
+
+ return end;
+}
+
+
+/*
* Handle ":class" and ":abstract class" up to ":endclass".
* Handle ":interface" up to ":endinterface".
*/
@@ -1383,7 +1401,8 @@ ex_class(exarg_T *eap)
goto early_ret;
}
arg = skipwhite(arg + 7);
- char_u *end = find_name_end(arg, NULL, NULL, FNE_CHECK_START);
+
+ char_u *end = find_class_name_end(arg);
if (!IS_WHITE_OR_NUL(*end))
{
semsg(_(e_white_space_required_after_name_str), arg);
@@ -1413,8 +1432,7 @@ ex_class(exarg_T *eap)
for (;;)
{
- char_u *impl_end = find_name_end(arg, NULL, NULL,
- FNE_CHECK_START);
+ char_u *impl_end = find_class_name_end(arg);
if ((!IS_WHITE_OR_NUL(*impl_end) && *impl_end != ',')
|| (*impl_end == ','
&& !IS_WHITE_OR_NUL(*(impl_end + 1))))