tartrazine/spec/tests/bash/test_curly_no_escape_and_quotes.txt

16 lines
397 B
Plaintext
Raw Normal View History

2024-08-03 10:36:47 +00:00
---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