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/terraform/test_heredoc.txt
2022-06-17 10:38:07 +02:00

65 lines
1.4 KiB
Text

---input---
resource "local_file" "heredoc" {
content = <<-DOC
heredoc content
DOC
}
resource "local_file" "heredoc" {
content = <<DOC
heredoc content
DOC
}
---tokens---
'resource' Keyword.Reserved
' ' Text.Whitespace
'"local_file"' Name.Class
' ' Text.Whitespace
'"heredoc"' Name.Variable
' ' Text.Whitespace
'{' Punctuation
'\n' Text.Whitespace
' ' Text.Whitespace
'content' Name.Attribute
' ' Text.Whitespace
'=' Operator
' ' Text.Whitespace
'<<-' Operator
'DOC' Literal.String.Delimiter
'\n' Literal.String.Heredoc
' heredoc content\n' Literal.String.Heredoc
' DOC\n' Literal.String.Delimiter
'}' Punctuation
'\n' Text.Whitespace
'\n' Text.Whitespace
'resource' Keyword.Reserved
' ' Text.Whitespace
'"local_file"' Name.Class
' ' Text.Whitespace
'"heredoc"' Name.Variable
' ' Text.Whitespace
'{' Punctuation
'\n' Text.Whitespace
' ' Text.Whitespace
'content' Name.Attribute
' ' Text.Whitespace
'=' Operator
' ' Text.Whitespace
'<<' Operator
'DOC' Literal.String.Delimiter
'\n' Literal.String.Heredoc
' heredoc content\n' Literal.String.Heredoc
' DOC\n' Literal.String.Delimiter
'}' Punctuation
'\n' Text.Whitespace