statements

This commit is contained in:
Robin Appelman 2023-12-15 16:22:51 +01:00
commit 12d3e35496
8 changed files with 69 additions and 53 deletions

View file

@ -0,0 +1,17 @@
---
source: tests/parse.rs
expression: parsed
---
Table({
"#base": Statement(Statement("panelBase.res")),
"Resource/specificPanel.res": Table(Table({
"array": Array(Array([
Value(Value("1")),
Value(Value("2")),
Value(Value("3")),
])),
"empty": Value(Value("")),
"empty quoted": Value(Value("\"\"")),
"windows_path": Value(Value("C:\\test\\no newline")),
})),
})