This is a read-only interface to the FlowrAnalyzerFunctionsContext. It prevents you from modifying the functions, but allows you to inspect them (which is probably what you want when using the FlowrAnalyzer). If you are a FlowrAnalyzerPackageVersionsPlugin and want to modify the functions, you can use the FlowrAnalyzerFunctionsContext directly.

interface ReadOnlyFlowrAnalyzerFunctionsContext {
    getFunctionInfo(
        name: string,
        className?: string,
    ): undefined | FunctionInfo | FunctionInfo[];
    name: string;
}

Implemented by

Properties

Methods

Properties

name: string

Methods