JSSM, a JavaScript state machine - the FSM for FSL
    Preparing search index...

    Type Alias JssmStateDeclarationRule

    A single key/value pair from an FSL state X: { ... }; block, in the raw form produced by the parser before being condensed into a JssmStateDeclaration.

    type JssmStateDeclarationRule = {
        key: string;
        loc?: FslSourceLocation;
        name?: string;
        value: any;
        value_loc?: FslSourceLocation;
    }
    Index
    key: string
    name?: string
    value: any
    value_loc?: FslSourceLocation