This repository has been archived on 2024-06-20. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
coffee.pygments/tests/snippets/shell/test_curly_no_escape_and_quotes.txt
2022-12-04 15:52:40 +01:00

15 lines
397 B
Text

---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