summaryrefslogtreecommitdiffstats
path: root/src/eval.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2020-08-07 19:28:08 +0200
committerBram Moolenaar <Bram@vim.org>2020-08-07 19:28:08 +0200
commit95dd9f2571f09a915674133c73b471b0ebbdcdbf (patch)
treeada5cf7b524ef8b0a2b58e8f30e7298f9d6912bb /src/eval.c
parent994b89d28dc54c896e00eba66e247addb0540272 (diff)
patch 8.2.1387: Vim9: cannot assign to single letter variable with typev8.2.1387
Problem: Vim9: cannot assign to single letter variable with type. Solution: Exclude the colon from the variable name. (closes #6647)
Diffstat (limited to 'src/eval.c')
-rw-r--r--src/eval.c21
1 files changed, 15 insertions, 6 deletions
diff --git a/src/eval.c b/src/eval.c
index 877b3bc0ff..c695468cdf 100644
--- a/src/eval.c
+++ b/src/eval.c
@@ -820,14 +820,23 @@ get_lval(
{
lp->ll_name = name;
- if (in_vim9script() && *p == ':')
+ if (in_vim9script())
{
- scriptitem_T *si = SCRIPT_ITEM(current_sctx.sc_sid);
- char_u *tp = skipwhite(p + 1);
+ // "a: type" is declaring variable "a" with a type, not "a:".
+ if (p == name + 2 && p[-1] == ':')
+ {
+ --p;
+ lp->ll_name_end = p;
+ }
+ if (*p == ':')
+ {
+ scriptitem_T *si = SCRIPT_ITEM(current_sctx.sc_sid);
+ char_u *tp = skipwhite(p + 1);
- // parse the type after the name
- lp->ll_type = parse_type(&tp, &si->sn_type_list);
- lp->ll_name_end = tp;
+ // parse the type after the name
+ lp->ll_type = parse_type(&tp, &si->sn_type_list);
+ lp->ll_name_end = tp;
+ }
}
}