summaryrefslogtreecommitdiff
path: root/tests/snippets/shell/test_curly_no_escape_and_quotes.txt
blob: 9fbb71850c21de55f5cc92d8eb262f4ca2d45a0c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
---input---
echo "${a//["b"]/}"

---tokens---
'echo'        Name.Builtin
' '           Text.Whitespace
'"'           Literal.String.Double
'${'          Literal.String.Interpol
'a'           Name.Variable
'//['         Punctuation
'"b"'         Literal.String.Double
']/'          Punctuation
'}'           Literal.String.Interpol
'"'           Literal.String.Double
'\n'          Text.Whitespace