UNPKG

@eagleoutice/flowr

Version:

Static Dataflow Analyzer and Program Slicer for the R Programming Language

13 lines 557 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.processUninterestingLeaf = processUninterestingLeaf; const info_1 = require("../../info"); /** * Processes a leaf node that does not contribute to dataflow by initializing * a clean dataflow information object for it. * This can be used to ignore nodes that do not affect dataflow analysis. */ function processUninterestingLeaf(leaf, info) { return info_1.DataflowInformation.initialize(leaf.info.id, info); } //# sourceMappingURL=process-uninteresting-leaf.js.map