UNPKG

@eagleoutice/flowr

Version:

Static Dataflow Analyzer and Program Slicer for the R Programming Language

18 lines 530 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.executeCompoundQueries = executeCompoundQueries; /** * Execute a single, virtual compound query in terms of unfolding the contained queries. */ function executeCompoundQueries(query) { const results = []; for (const arg of query.arguments) { results.push({ type: query.query, ...query.commonArguments, ...arg }); } return results; } //# sourceMappingURL=compound-query.js.map