UNPKG

@eagleoutice/flowr

Version:

Static Dataflow Analyzer and Program Slicer for the R Programming Language

11 lines (10 loc) 376 B
import type { Leaf, Location, NoInfo } from '../model'; import type { RType } from '../type'; import type { RStringValue } from '../../../convert-values'; /** * Represents a string like `"hello"`, including raw strings like `r"(hello)"`. */ export interface RString<Info = NoInfo> extends Leaf<Info>, Location { readonly type: RType.String; content: RStringValue; }