UNPKG

@eagleoutice/flowr

Version:

Static Dataflow Analyzer and Program Slicer for the R Programming Language

17 lines 589 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.executeNormalizedAstQuery = executeNormalizedAstQuery; const log_1 = require("../../../util/log"); function executeNormalizedAstQuery({ ast }, queries) { if (queries.length !== 1) { log_1.log.warn('Normalized-Ast query expects only up to one query, but got', queries.length); } return { '.meta': { /* there is no sense in measuring a get */ timing: 0 }, normalized: ast }; } //# sourceMappingURL=normalized-ast-query-executor.js.map