interface DefaultBuiltInProcessorConfiguration {
    cfg?: ExitPointType;
    forceArgs?: "all" | readonly boolean[];
    hasUnknownSideEffects?: boolean | LinkTo<string | RegExp>;
    readAllArguments?: boolean;
    returnsNthArgument?: number | "last";
}

Hierarchy (view full)

Hierarchy-Diagram

UML class diagram of DefaultBuiltInProcessorConfiguration

Properties

forceArgs?: "all" | readonly boolean[]

which of the arguments should be forced? this may be all, e.g., if the function itself is unknown on encounter

hasUnknownSideEffects?: boolean | LinkTo<string | RegExp>
readAllArguments?: boolean
returnsNthArgument?: number | "last"