UNPKG

@eagleoutice/flowr

Version:

Static Dataflow Analyzer and Program Slicer for the R Programming Language

9 lines (8 loc) 230 B
import type { Leaf, Location, NoInfo } from '../model'; import type { RType } from '../type'; /** * A `break` statement. */ export interface RBreak<Info = NoInfo> extends Location, Leaf<Info> { readonly type: RType.Break; }