2021-06-17 19:39:46 +02:00
|
|
|
================================================================================
|
2021-06-08 23:18:50 +02:00
|
|
|
attribute with literal
|
2021-06-17 19:39:46 +02:00
|
|
|
================================================================================
|
2021-06-08 23:18:50 +02:00
|
|
|
|
|
|
|
|
foo = "bar"
|
|
|
|
|
|
2021-06-17 19:39:46 +02:00
|
|
|
--------------------------------------------------------------------------------
|
2021-06-08 23:18:50 +02:00
|
|
|
|
|
|
|
|
(config_file
|
|
|
|
|
(body
|
|
|
|
|
(attribute
|
|
|
|
|
(identifier)
|
2021-06-17 19:39:46 +02:00
|
|
|
(expression
|
|
|
|
|
(literal_value
|
|
|
|
|
(string_lit
|
2021-07-01 23:57:52 +02:00
|
|
|
(quoted_template_start)
|
|
|
|
|
(template_literal)
|
|
|
|
|
(quoted_template_end)))))))
|
2021-06-08 23:18:50 +02:00
|
|
|
|
2021-06-17 19:39:46 +02:00
|
|
|
================================================================================
|
2021-06-08 23:18:50 +02:00
|
|
|
attribute with variable
|
2021-06-17 19:39:46 +02:00
|
|
|
================================================================================
|
2021-06-08 23:18:50 +02:00
|
|
|
|
|
|
|
|
foo = bar
|
|
|
|
|
|
2021-06-17 19:39:46 +02:00
|
|
|
--------------------------------------------------------------------------------
|
2021-06-08 23:18:50 +02:00
|
|
|
|
|
|
|
|
(config_file
|
|
|
|
|
(body
|
|
|
|
|
(attribute
|
|
|
|
|
(identifier)
|
2021-06-17 19:39:46 +02:00
|
|
|
(expression
|
|
|
|
|
(variable_expr
|
|
|
|
|
(identifier))))))
|