ruff/crates/ruff_python_parser/tests/snapshots/valid_syntax@other__atom.py.snap
2024-11-15 19:31:15 +01:00

58 lines
1.5 KiB
Text

---
source: crates/ruff_python_parser/tests/fixtures.rs
input_file: crates/ruff_python_parser/resources/valid/other/atom.py
snapshot_kind: text
---
## AST
```
Module(
ModModule {
range: 0..73,
body: [
Expr(
StmtExpr {
range: 0..3,
value: EllipsisLiteral(
ExprEllipsisLiteral {
range: 0..3,
},
),
},
),
Expr(
StmtExpr {
range: 4..8,
value: BooleanLiteral(
ExprBooleanLiteral {
range: 4..8,
value: true,
},
),
},
),
Expr(
StmtExpr {
range: 9..14,
value: BooleanLiteral(
ExprBooleanLiteral {
range: 9..14,
value: false,
},
),
},
),
Expr(
StmtExpr {
range: 15..19,
value: NoneLiteral(
ExprNoneLiteral {
range: 15..19,
},
),
},
),
],
},
)
```