2021-06-08 23:18:50 +02:00
|
|
|
==================
|
|
|
|
|
attribute with literal
|
|
|
|
|
==================
|
|
|
|
|
|
|
|
|
|
foo = "bar"
|
|
|
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
|
|
(config_file
|
|
|
|
|
(body
|
|
|
|
|
(attribute
|
|
|
|
|
(identifier)
|
2021-06-14 00:55:24 +02:00
|
|
|
(expression (expr_term (template_expr (quoted_template)))))))
|
2021-06-08 23:18:50 +02:00
|
|
|
|
|
|
|
|
==================
|
|
|
|
|
attribute with variable
|
|
|
|
|
==================
|
|
|
|
|
|
|
|
|
|
foo = bar
|
|
|
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
|
|
(config_file
|
|
|
|
|
(body
|
|
|
|
|
(attribute
|
|
|
|
|
(identifier)
|
2021-06-14 00:55:24 +02:00
|
|
|
(expression (expr_term (variable_expr (identifier)))))))
|
2021-06-08 23:18:50 +02:00
|
|
|
|