* 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)
| 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. |
no test coverage detected
searching dependent graphs…