@eagleoutice/flowr - v2.15.8
    Preparing search index...

    How one built-in declares a class, so no processor has to guess an argument's meaning from its position.

    interface ClassDeclarationConfig {
        containsArg?: ClassArgRef;
        memberArgs?: readonly ClassMemberArgRef[];
        nameArg?: ClassArgRef;
        prototypeArg?: ClassArgRef;
        relation?: "is" | "validity";
        system: ClassSystem;
        unionArg?: ClassArgRef;
        virtualArg?: ClassArgRef;
    }
    Index
    containsArg?: ClassArgRef

    the argument carrying the direct superclass(es): S4 contains, S7 parent, R6 inherit, RC contains

    memberArgs?: readonly ClassMemberArgRef[]

    the arguments carrying members, in the order they are to be read

    nameArg?: ClassArgRef

    the argument naming the class

    prototypeArg?: ClassArgRef

    the argument carrying the member defaults (S4 prototype)

    relation?: "is" | "validity"

    the declaration relates existing classes rather than declaring one

    system: ClassSystem
    unionArg?: ClassArgRef

    the argument listing the members of a class union (setClassUnion)

    virtualArg?: ClassArgRef

    the argument saying the class cannot be instantiated (S7 abstract)