Files

35 lines
911 B
Plaintext
Raw Permalink Normal View History

================================================================================
2021-06-08 23:18:50 +02:00
attribute with literal
================================================================================
2021-06-08 23:18:50 +02:00
foo = "bar"
--------------------------------------------------------------------------------
2021-06-08 23:18:50 +02:00
(config_file
(body
(attribute
(identifier)
(expression
(literal_value
(string_lit
(quoted_template_start)
(template_literal)
(quoted_template_end)))))))
2021-06-08 23:18:50 +02:00
================================================================================
2021-06-08 23:18:50 +02:00
attribute with variable
================================================================================
2021-06-08 23:18:50 +02:00
foo = bar
--------------------------------------------------------------------------------
2021-06-08 23:18:50 +02:00
(config_file
(body
(attribute
(identifier)
(expression
(variable_expr
(identifier))))))