MCPcopy Create free account
hub / github.com/microsoft/SandDance / finishCallExpression

Function finishCallExpression

docs/app/js/sanddance-app.js:144021–144026  ·  view source on GitHub ↗
(callee, args)

Source from the content-addressed store, hash-verified

144019 return node;
144020}
144021function finishCallExpression(callee, args) {
144022 const node = new ASTNode(SyntaxCallExpression);
144023 node.callee = callee;
144024 node.arguments = args;
144025 return node;
144026}
144027function finishConditionalExpression(test, consequent, alternate) {
144028 const node = new ASTNode(SyntaxConditionalExpression);
144029 node.test = test;

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected