fmt tests; properly define string literals; work on scanner
This commit is contained in:
@@ -1,28 +1,32 @@
|
||||
==================
|
||||
================================================================================
|
||||
attribute with literal
|
||||
==================
|
||||
================================================================================
|
||||
|
||||
foo = "bar"
|
||||
|
||||
---
|
||||
--------------------------------------------------------------------------------
|
||||
|
||||
(config_file
|
||||
(body
|
||||
(attribute
|
||||
(identifier)
|
||||
(expression (expr_term (template_expr (quoted_template)))))))
|
||||
(expression
|
||||
(literal_value
|
||||
(string_lit
|
||||
(template_literal)))))))
|
||||
|
||||
==================
|
||||
================================================================================
|
||||
attribute with variable
|
||||
==================
|
||||
================================================================================
|
||||
|
||||
foo = bar
|
||||
|
||||
---
|
||||
--------------------------------------------------------------------------------
|
||||
|
||||
(config_file
|
||||
(body
|
||||
(attribute
|
||||
(identifier)
|
||||
(expression (expr_term (variable_expr (identifier)))))))
|
||||
|
||||
(expression
|
||||
(variable_expr
|
||||
(identifier))))))
|
||||
|
||||
Reference in New Issue
Block a user