mirror of
https://github.com/CyC2018/CS-Notes.git
synced 2025-07-11 14:11:19 +08:00
21 lines
426 B
Plaintext
21 lines
426 B
Plaintext
`${`a string`}`
|
|
|
|
----------------------------------------------------
|
|
|
|
[
|
|
["template-string", [
|
|
["string", "`"],
|
|
["interpolation", [
|
|
["interpolation-punctuation", "${"],
|
|
["template-string", [
|
|
["string", "`a string`"]
|
|
]],
|
|
["interpolation-punctuation", "}"]
|
|
]],
|
|
["string", "`"]
|
|
]]
|
|
]
|
|
|
|
----------------------------------------------------
|
|
|
|
Checks for nested template strings. See #1397 |