@eagleoutice/flowr
Version:
Static Dataflow Analyzer and Program Slicer for the R Programming Language
17 lines • 605 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.processVector = processVector;
const known_call_handling_1 = require("../known-call-handling");
const built_in_proc_name_1 = require("../../../../../environments/built-in-proc-name");
/**
* Process a vector call.
*
* Example:
* ```r
* c(1, 2, 3, 4)
* ```
*/
function processVector(name, args, rootId, data) {
return (0, known_call_handling_1.processKnownFunctionCall)({ name, args, rootId, data, origin: built_in_proc_name_1.BuiltInProcName.Vector }).information;
}
//# sourceMappingURL=built-in-vector.js.map