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

Function visitExpressionWithTypeArguments

test/fixtures/snapshot/typescript.js:93132–93135  ·  view source on GitHub ↗

* Transforms an ExpressionWithTypeArguments with TypeScript syntax. * * This function will only be called when one of the following conditions are met: * - The node contains type arguments that should be elided. * * @param node The ExpressionWithTypeArgum

(node)

Source from the content-addressed store, hash-verified

93130 * @param node The ExpressionWithTypeArguments to transform.
93131 */
93132 function visitExpressionWithTypeArguments(node) {
93133 return factory.updateExpressionWithTypeArguments(node, ts.visitNode(node.expression, visitor, ts.isLeftHandSideExpression),
93134 /*typeArguments*/ undefined);
93135 }
93136 /**
93137 * Determines whether to emit a function-like declaration. We should not emit the
93138 * declaration if it does not have a body.

Callers 2

visitTypeScriptFunction · 0.85
heritageClauseVisitorFunction · 0.85

Calls 1

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…