@eagleoutice/flowr
Version:
Static Dataflow Analyzer and Program Slicer for the R Programming Language
9 lines (8 loc) • 696 B
TypeScript
import type { REnvironmentInformation } from './environment';
/**
* Adds all writes of `next` to `base` (i.e., the operations of `next` *might* happen).
*/
export declare function appendEnvironment(base: REnvironmentInformation, next: REnvironmentInformation | undefined): REnvironmentInformation;
export declare function appendEnvironment(base: REnvironmentInformation | undefined, next: REnvironmentInformation): REnvironmentInformation;
export declare function appendEnvironment(base: undefined, next: undefined): undefined;
export declare function appendEnvironment(base: REnvironmentInformation | undefined, next: REnvironmentInformation | undefined): REnvironmentInformation | undefined;