(sourceFile, cancellationToken)
| 48985 | return ts.visitEachChild(node, markAsSynthetic, ts.nullTransformationContext); |
| 48986 | } |
| 48987 | function getEmitResolver(sourceFile, cancellationToken) { |
| 48988 | // Ensure we have all the type information in place for this file so that all the |
| 48989 | // emitter questions of this resolver will return the right information. |
| 48990 | getDiagnostics(sourceFile, cancellationToken); |
| 48991 | return emitResolver; |
| 48992 | } |
| 48993 | function lookupOrIssueError(location, message, arg0, arg1, arg2, arg3) { |
| 48994 | var diagnostic = location |
| 48995 | ? ts.createDiagnosticForNode(location, message, arg0, arg1, arg2, arg3) |
nothing calls this directly
no test coverage detected