@eagleoutice/flowr
Version:
Static Dataflow Analyzer and Program Slicer for the R Programming Language
13 lines (12 loc) • 341 B
TypeScript
import type { Base, Location, NoInfo } from '../model';
import type { RType } from '../type';
import type { RExpressionList } from './r-expression-list';
/**
* ```r
* repeat <body>
* ```
*/
export interface RRepeatLoop<Info = NoInfo> extends Base<Info>, Location {
readonly type: RType.RepeatLoop;
body: RExpressionList<Info>;
}