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

interface ReadOnlyFlowrAnalyzerContext {
    deps: ReadOnlyFlowrAnalyzerDependenciesContext;
    files: ReadOnlyFlowrAnalyzerFilesContext;
}

Implemented by

Properties

Properties

The dependencies context provides access to the identified dependencies and their versions.

The files context provides access to the files to be analyzed and their loading order.