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

Function emitElementAccessExpression

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

Source from the content-addressed store, hash-verified

112207 }
112208 }
112209 function emitElementAccessExpression(node) {
112210 emitExpression(node.expression, parenthesizer.parenthesizeLeftSideOfAccess);
112211 emit(node.questionDotToken);
112212 emitTokenWithComment(22 /* SyntaxKind.OpenBracketToken */, node.expression.end, writePunctuation, node);
112213 emitExpression(node.argumentExpression);
112214 emitTokenWithComment(23 /* SyntaxKind.CloseBracketToken */, node.argumentExpression.end, writePunctuation, node);
112215 }
112216 function emitCallExpression(node) {
112217 var indirectCall = ts.getEmitFlags(node) & 536870912 /* EmitFlags.IndirectCall */;
112218 if (indirectCall) {

Callers 1

Calls 3

emitExpressionFunction · 0.85
emitTokenWithCommentFunction · 0.85
emitFunction · 0.70

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…