@eagleoutice/flowr
Version:
Static Dataflow Analyzer and Program Slicer for the R Programming Language
18 lines • 609 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.executeConfigQuery = executeConfigQuery;
const log_1 = require("../../../util/log");
const config_1 = require("../../../config");
function executeConfigQuery(_, queries) {
if (queries.length !== 1) {
log_1.log.warn('Config query expects only up to one query, but got', queries.length);
}
return {
'.meta': {
/* there is no sense in measuring a get */
timing: 0
},
config: (0, config_1.getConfig)()
};
}
//# sourceMappingURL=config-query-executor.js.map