Improve arg parsing

This commit is contained in:
2026-03-11 12:54:02 -07:00
parent 2af318c0ec
commit eea01616a3
19 changed files with 327 additions and 98 deletions

View File

@@ -41,8 +41,11 @@ pub enum PathSegment {
/// Go to root node (`$` identifier)
Root,
/// Go to a child of the current object
Field(Label),
/// Go to a child of the current object.
Field {
name: Label,
args: Option<SmartString<LazyCompact>>,
},
/// Go to an element of the current list
Index(i64),