diff --git a/trunk_parser/src/parser.rs b/trunk_parser/src/parser.rs index 736d9bb..9326dd5 100644 --- a/trunk_parser/src/parser.rs +++ b/trunk_parser/src/parser.rs @@ -389,12 +389,16 @@ mod tests { class Foo { function bar() { - + echo 1; } } ", &[ class!("Foo", &[ - method!("bar", &[], &[], &[]) + method!("bar", &[], &[], &[ + Statement::Echo { values: vec![ + Expression::Int(1), + ] } + ]) ]) ]); }