eww/crates/simplexpr/src/parser/snapshots/simplexpr__parser__tests__test-7.snap

8 lines
171 B
Text

---
source: crates/simplexpr/src/parser/mod.rs
expression: "p.parse(0, Lexer::new(0, 0, \"1 + (true ? 2 : 5) + 2\"))"
---
Ok(
(("1" + ("true" ? "2" : "5")) + "2"),
)