(
functionName: string,
callArguments: ts.Expression[],
transformContext: ts.TransformationContext,
)
| 297 | } |
| 298 | |
| 299 | private createRendererCallExpr( |
| 300 | functionName: string, |
| 301 | callArguments: ts.Expression[], |
| 302 | transformContext: ts.TransformationContext, |
| 303 | ): ts.Expression { |
| 304 | const propertyAccess = transformContext.factory.createPropertyAccessExpression( |
| 305 | transformContext.factory.createIdentifier('__Renderer'), |
| 306 | functionName, |
| 307 | ); |
| 308 | return transformContext.factory.createCallExpression(propertyAccess, undefined, callArguments); |
| 309 | } |
| 310 | |
| 311 | private createRendererCall( |
| 312 | functionName: string, |
no outgoing calls
no test coverage detected