Universal Robots TypeScript API - v10.12.0
    Preparing search index...

    Interface InsertionTraverse

    TreeContext provides access to a program nodes ancestors, and siblings

    interface InsertionTraverse {
        ancestors: AsyncIterableIterator<Readonly<ProgramNode>>;
        nextSiblings: AsyncIterableIterator<Readonly<ProgramNode>>;
        previousSiblings: AsyncIterableIterator<Readonly<ProgramNode>>;
    }
    Index

    Properties

    ancestors: AsyncIterableIterator<Readonly<ProgramNode>>
    nextSiblings: AsyncIterableIterator<Readonly<ProgramNode>>
    previousSiblings: AsyncIterableIterator<Readonly<ProgramNode>>