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

Function getInitializerOfBinaryExpression

test/fixtures/snapshot/typescript.js:16705–16710  ·  view source on GitHub ↗
(expr)

Source from the content-addressed store, hash-verified

16703 }
16704 ts.getAssignmentDeclarationPropertyAccessKind = getAssignmentDeclarationPropertyAccessKind;
16705 function getInitializerOfBinaryExpression(expr) {
16706 while (ts.isBinaryExpression(expr.right)) {
16707 expr = expr.right;
16708 }
16709 return expr.right;
16710 }
16711 ts.getInitializerOfBinaryExpression = getInitializerOfBinaryExpression;
16712 function isPrototypePropertyAssignment(node) {
16713 return ts.isBinaryExpression(node) && getAssignmentDeclarationKind(node) === 3 /* AssignmentDeclarationKind.PrototypeProperty */;

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…