@eagleoutice/flowr
Version:
Static Dataflow Analyzer and Program Slicer for the R Programming Language
13 lines (12 loc) • 639 B
TypeScript
import { FlowrAnalyzerPackageVersionsPlugin } from './flowr-analyzer-package-versions-plugin';
import { SemVer } from 'semver';
import type { FlowrAnalyzerContext } from '../../context/flowr-analyzer-context';
/**
* This plugin extracts package meta information from R `DESCRIPTION` files.
*/
export declare class FlowrAnalyzerMetaDescriptionFilePlugin extends FlowrAnalyzerPackageVersionsPlugin {
readonly name = "flowr-analyzer-meta-file-plugin";
readonly description = "This plugin does extract package meta information from R DESCRIPTION files.";
readonly version: SemVer;
process(ctx: FlowrAnalyzerContext): void;
}