UNPKG

@eagleoutice/flowr

Version:

Static Dataflow Analyzer and Program Slicer for the R Programming Language

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