UNPKG

@eagleoutice/flowr

Version:

Static Dataflow Analyzer and Program Slicer for the R Programming Language

14 lines 388 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.ParseError = void 0; /** * Thrown if the given input is not valid/contains unexpected elements. */ class ParseError extends Error { constructor(message) { super(message); this.name = 'ParseError'; } } exports.ParseError = ParseError; //# sourceMappingURL=normalizer-data.js.map