from #13991 (comment)
Update examples for:
EMBEDDED_EXPRESSION_BEGIN
EMBEDDED_EXPRESSION
EMBEDDED_EXPRESSION_END
from
String s = STR."Hello, \{getName(firstName, lastName)}!";
to
String s = STR."Hello, \{getName("Mr. ", firstName, lastName)}!";
Reason: to show how " are rendered in tree in STR."
from #13991 (comment)
Update examples for:
EMBEDDED_EXPRESSION_BEGIN
EMBEDDED_EXPRESSION
EMBEDDED_EXPRESSION_END
from
String s = STR."Hello, \{getName(firstName, lastName)}!";to
String s = STR."Hello, \{getName("Mr. ", firstName, lastName)}!";Reason: to show how
"are rendered in tree inSTR."