UNPKG

@eagleoutice/flowr

Version:

Static Dataflow Analyzer and Program Slicer for the R Programming Language

11 lines (10 loc) 379 B
import type { Leaf, Location, Namespace, NoInfo } from '../model'; import type { RType } from '../type'; export declare function isSpecialSymbol(symbol: RSymbol): boolean; /** * Represents identifiers (variables). */ export interface RSymbol<Info = NoInfo, T extends string = string> extends Leaf<Info>, Namespace, Location { readonly type: RType.Symbol; content: T; }