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

Function isPrototypePropertyAssignment

test/fixtures/snapshot/typescript.js:16712–16714  ·  view source on GitHub ↗
(node)

Source from the content-addressed store, hash-verified

16710 }
16711 ts.getInitializerOfBinaryExpression = getInitializerOfBinaryExpression;
16712 function isPrototypePropertyAssignment(node) {
16713 return ts.isBinaryExpression(node) && getAssignmentDeclarationKind(node) === 3 /* AssignmentDeclarationKind.PrototypeProperty */;
16714 }
16715 ts.isPrototypePropertyAssignment = isPrototypePropertyAssignment;
16716 function isSpecialPropertyDeclaration(expr) {
16717 return isInJSFile(expr) &&

Callers

nothing calls this directly

Calls 1

Tested by

no test coverage detected