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

Function finishProperty

docs/app/js/sanddance-app.js:144062–144068  ·  view source on GitHub ↗
(kind, key, value)

Source from the content-addressed store, hash-verified

144060 return node;
144061}
144062function finishProperty(kind, key, value) {
144063 const node = new ASTNode(SyntaxProperty);
144064 node.key = key;
144065 node.value = value;
144066 node.kind = kind;
144067 return node;
144068}
144069function finishUnaryExpression(operator, argument) {
144070 const node = new ASTNode(SyntaxUnaryExpression);
144071 node.operator = operator;

Callers 1

parseObjectPropertyFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected