(location, message, arg0, arg1, arg2, arg3)
| 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) |
| 48996 | : ts.createCompilerDiagnostic(message, arg0, arg1, arg2, arg3); |
| 48997 | var existing = diagnostics.lookup(diagnostic); |
| 48998 | if (existing) { |
| 48999 | return existing; |
| 49000 | } |
| 49001 | else { |
| 49002 | diagnostics.add(diagnostic); |
| 49003 | return diagnostic; |
| 49004 | } |
| 49005 | } |
| 49006 | function errorSkippedOn(key, location, message, arg0, arg1, arg2, arg3) { |
| 49007 | var diagnostic = error(location, message, arg0, arg1, arg2, arg3); |
| 49008 | diagnostic.skippedOn = key; |
no test coverage detected
searching dependent graphs…