blob: d03b23ea5f21176e7e53a615fe2cc769385e9168 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
---input---
echo ${a//[\"]/}
---tokens---
'echo' Name.Builtin
' ' Text.Whitespace
'${' Literal.String.Interpol
'a' Name.Variable
'//[' Punctuation
'\\"' Literal.String.Escape
']/' Punctuation
'}' Literal.String.Interpol
'\n' Text.Whitespace
|