2021-06-11 23:32:22 +02:00
|
|
|
==================
|
|
|
|
|
collection value tuple
|
|
|
|
|
==================
|
|
|
|
|
|
|
|
|
|
foo = [1, 2, "foo"]
|
|
|
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
|
|
(config_file
|
|
|
|
|
(body
|
|
|
|
|
(attribute
|
|
|
|
|
(identifier)
|
|
|
|
|
(expression
|
|
|
|
|
(expr_term
|
|
|
|
|
(collection_value
|
|
|
|
|
(tuple
|
|
|
|
|
(expression (expr_term (literal_value (numeric_lit))))
|
|
|
|
|
(expression (expr_term (literal_value (numeric_lit))))
|
2021-06-14 00:55:24 +02:00
|
|
|
(expression (expr_term (template_expr (quoted_template)))))))))))
|
2021-06-11 23:32:22 +02:00
|
|
|
|
|
|
|
|
==================
|
|
|
|
|
collection value object
|
|
|
|
|
==================
|
|
|
|
|
|
|
|
|
|
foo = {1: 2, "foo"="bar"}
|
|
|
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
|
|
(config_file
|
|
|
|
|
(body
|
|
|
|
|
(attribute
|
|
|
|
|
(identifier)
|
|
|
|
|
(expression
|
|
|
|
|
(expr_term
|
|
|
|
|
(collection_value
|
|
|
|
|
(object
|
|
|
|
|
(object_elem
|
|
|
|
|
(expression (expr_term (literal_value (numeric_lit))))
|
|
|
|
|
(expression (expr_term (literal_value (numeric_lit)))))
|
|
|
|
|
(object_elem
|
2021-06-14 00:55:24 +02:00
|
|
|
(expression (expr_term (template_expr (quoted_template))))
|
|
|
|
|
(expression (expr_term (template_expr (quoted_template))))))))))))
|
2021-06-11 23:32:22 +02:00
|
|
|
|