UNPKG

@eagleoutice/flowr

Version:

Static Dataflow Analyzer and Program Slicer for the R Programming Language

14 lines 646 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.processFunctionCall = processFunctionCall; const named_call_handling_1 = require("./named-call-handling"); const unnamed_call_handling_1 = require("./unnamed-call-handling"); function processFunctionCall(functionCall, data) { if (functionCall.named) { return (0, named_call_handling_1.processNamedCall)(functionCall.functionName, functionCall.arguments, functionCall.info.id, data); } else { return (0, unnamed_call_handling_1.processUnnamedFunctionCall)(functionCall, data); } } //# sourceMappingURL=default-call-handling.js.map