UNPKG

@eagleoutice/flowr

Version:

Static Dataflow Analyzer and Program Slicer for the R Programming Language

17 lines 598 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.processList = processList; const known_call_handling_1 = require("../known-call-handling"); const built_in_proc_name_1 = require("../../../../../environments/built-in-proc-name"); /** * Process a list call. * * Example: * ```r * list(a = 1, b = 2) * ``` */ function processList(name, args, rootId, data) { return (0, known_call_handling_1.processKnownFunctionCall)({ name, args, rootId, data, origin: built_in_proc_name_1.BuiltInProcName.List }).information; } //# sourceMappingURL=built-in-list.js.map