Interface AltVal<V>

    A parsed alternation: which branch matched, and that branch's value.

    interface AltVal<V = RegVal> {
        branch: number;
        val: V;
    }

    Type Parameters

    Index

    Properties

    Properties

    branch: number
    val: V