UNPKG

@eagleoutice/flowr

Version:

Static Dataflow Analyzer and Program Slicer for the R Programming Language

12 lines (11 loc) 271 B
import type { Leaf, Location, NoInfo } from '../model'; import type { RType } from '../type'; /** * ```r * # I am a line comment * ``` */ export interface RComment<Info = NoInfo> extends Location, Leaf<Info> { readonly type: RType.Comment; content: string; }