Add missing parser snapshots.
This commit is contained in:
parent
ddfe01ee88
commit
7bfc01413b
|
@ -0,0 +1,12 @@
|
||||||
|
---
|
||||||
|
source: crates/aiken-lang/src/parser/chain/field_access.rs
|
||||||
|
description: "Code:\n\nfoo.else"
|
||||||
|
---
|
||||||
|
FieldAccess {
|
||||||
|
location: 0..8,
|
||||||
|
label: "else",
|
||||||
|
container: Var {
|
||||||
|
location: 0..3,
|
||||||
|
name: "foo",
|
||||||
|
},
|
||||||
|
}
|
|
@ -0,0 +1,16 @@
|
||||||
|
---
|
||||||
|
source: crates/aiken-lang/src/parser/chain/field_access.rs
|
||||||
|
description: "Code:\n\nfoo.bar.else"
|
||||||
|
---
|
||||||
|
FieldAccess {
|
||||||
|
location: 0..12,
|
||||||
|
label: "else",
|
||||||
|
container: FieldAccess {
|
||||||
|
location: 0..7,
|
||||||
|
label: "bar",
|
||||||
|
container: Var {
|
||||||
|
location: 0..3,
|
||||||
|
name: "foo",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
Loading…
Reference in New Issue