UNPKG

@eagleoutice/flowr

Version:

Static Dataflow Analyzer and Program Slicer for the R Programming Language

14 lines (13 loc) 386 B
import type { Base, Location, NoInfo, RNode } from '../model'; import type { RType } from '../type'; import type { RExpressionList } from './r-expression-list'; /** * ```r * while(<condition>) <body> * ``` */ export interface RWhileLoop<Info = NoInfo> extends Base<Info>, Location { readonly type: RType.WhileLoop; condition: RNode<Info>; body: RExpressionList<Info>; }