Files
tree-sitter-jhcl/test/corpus/attributes.txt

33 lines
841 B
Plaintext

================================================================================
attribute with literal
================================================================================
foo = "bar"
--------------------------------------------------------------------------------
(config_file
(body
(attribute
(identifier)
(expression
(literal_value
(string_lit
(template_literal)))))))
================================================================================
attribute with variable
================================================================================
foo = bar
--------------------------------------------------------------------------------
(config_file
(body
(attribute
(identifier)
(expression
(variable_expr
(identifier))))))