xee-xpath-compiler 0.1.5

XPath 3.1 compiler of AST to Xee IR
Documentation
---
source: xee-xpath/src/ast_ir.rs
expression: "convert_expr_single(\"1 instance of xs:string\")"
---
Ok(
    Spanned {
        value: InstanceOf(
            InstanceOf {
                atom: Spanned {
                    value: Const(
                        Integer(
                            1,
                        ),
                    ),
                    span: 0..1,
                },
                sequence_type: Item(
                    Item {
                        item_type: AtomicOrUnionType(
                            String,
                        ),
                        occurrence: One,
                    },
                ),
            },
        ),
        span: 0..23,
    },
)