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

Function createObjectLiteralExpression

test/fixtures/snapshot/typescript.js:24000–24006  ·  view source on GitHub ↗
(properties, multiLine)

Source from the content-addressed store, hash-verified

23998 }
23999 // @api
24000 function createObjectLiteralExpression(properties, multiLine) {
24001 var node = createBaseExpression(205 /* SyntaxKind.ObjectLiteralExpression */);
24002 node.properties = createNodeArray(properties);
24003 node.multiLine = multiLine;
24004 node.transformFlags |= propagateChildrenFlags(node.properties);
24005 return node;
24006 }
24007 // @api
24008 function updateObjectLiteralExpression(node, properties) {
24009 return node.properties !== properties

Callers 3

createPropertyDescriptorFunction · 0.85

Calls 3

createBaseExpressionFunction · 0.85
createNodeArrayFunction · 0.85
propagateChildrenFlagsFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…