XSound - v4.1.3
    Preparing search index...

    Interface Tree

    This class is entity for MML syntax tree.

    interface Tree {
        get left(): null | Tree;
        get operator(): Token;
        get right(): null | Tree;
        clear(): void;
        concat(node: Tree): void;
        toString(): string;
    }
    Index

    Accessors

    Methods

    • This method clears indent.

      Returns void

    • This method concatenates subtree as right subtree.

      Parameters

      • node: Tree

        This argument is instance of Tree as syntax tree node.

      Returns void

    • This method represents tree status as string.

      Returns string