@eagleoutice/flowr
Version:
Static Dataflow Analyzer and Program Slicer for the R Programming Language
11 lines (10 loc) • 358 B
TypeScript
import type { Base, Location, NoInfo, RNode } from '../model';
import type { RType } from '../type';
/**
* Variant of the binary operator, specifically for the new, built-in pipe operator.
*/
export interface RPipe<Info = NoInfo> extends Base<Info>, Location {
readonly type: RType.Pipe;
readonly lhs: RNode<Info>;
readonly rhs: RNode<Info>;
}