MCPcopy Index your code
hub / github.com/nodejs/node / createSyntheticExpression

Function createSyntheticExpression

test/fixtures/snapshot/typescript.js:26501–26508  ·  view source on GitHub ↗
(type, isSpread, tupleNameSource)

Source from the content-addressed store, hash-verified

26499 //
26500 // @api
26501 function createSyntheticExpression(type, isSpread, tupleNameSource) {
26502 if (isSpread === void 0) { isSpread = false; }
26503 var node = createBaseNode(232 /* SyntaxKind.SyntheticExpression */);
26504 node.type = type;
26505 node.isSpread = isSpread;
26506 node.tupleNameSource = tupleNameSource;
26507 return node;
26508 }
26509 // @api
26510 function createSyntaxList(children) {
26511 var node = createBaseNode(348 /* SyntaxKind.SyntaxList */);

Calls 1

createBaseNodeFunction · 0.85

Tested by

no test coverage detected