patch 8.2.1322: Vim9: method on double quoted string doesn't work
Problem: Vim9: method on double quoted string doesn't work.
Solution: Recognize double quoted string. (closes #6562)
diff --git a/src/ex_docmd.c b/src/ex_docmd.c
index 536850e..ad1693b 100644
--- a/src/ex_docmd.c
+++ b/src/ex_docmd.c
@@ -3277,7 +3277,7 @@
char_u *pskip = (*eap->cmd == '&' || *eap->cmd == '$'
|| *eap->cmd == '@') ? eap->cmd + 1 : eap->cmd;
- if (vim_strchr((char_u *)"{('[", *p) != NULL
+ if (vim_strchr((char_u *)"{('[\"", *p) != NULL
|| ((p = to_name_const_end(pskip)) > eap->cmd && *p != NUL))
{
int oplen;
@@ -3293,6 +3293,8 @@
*eap->cmd == '{'
// "'string'->func()" is an expression.
|| *eap->cmd == '\''
+ // '"string"->func()' is an expression.
+ || *eap->cmd == '"'
// "g:varname" is an expression.
|| eap->cmd[1] == ':'
)