Saxonberg Server API
    Preparing search index...

    Interface Pipeline

    One statement: a pipeline of one-or-more commands. In v1 commands always has length 1 (multi-stage execution is NYI, matching the tokenizer's existing single-command-only pipeline). | is reserved and parsed into this node; it just isn't run across stages yet.

    interface Pipeline {
        commands: Command[];
        kind: "pipeline";
    }
    Index

    Properties

    Properties

    commands: Command[]
    kind: "pipeline"