---
source: xee-xpath-ast/src/parser/mod.rs
expression: "parse_xpath_simple(\"'foo' instance of map(*)\")"
---
Ok(XPath(Expr([
Path(PathExpr(
steps: [
PrimaryExpr(Expr(Some(Expr([
Apply(ApplyExpr(
path_expr: PathExpr(
steps: [
PrimaryExpr(Literal(String("foo"))),
],
),
operator: InstanceOf(Item(Item(
item_type: MapTest(AnyMapTest),
occurrence: One,
))),
)),
])))),
],
)),
])))