(location, declaration, deprecatedEntity, signatureString)
| 49064 | return addDeprecatedSuggestionWorker(declarations, diagnostic); |
| 49065 | } |
| 49066 | function addDeprecatedSuggestionWithSignature(location, declaration, deprecatedEntity, signatureString) { |
| 49067 | var diagnostic = deprecatedEntity |
| 49068 | ? ts.createDiagnosticForNode(location, ts.Diagnostics.The_signature_0_of_1_is_deprecated, signatureString, deprecatedEntity) |
| 49069 | : ts.createDiagnosticForNode(location, ts.Diagnostics._0_is_deprecated, signatureString); |
| 49070 | return addDeprecatedSuggestionWorker(declaration, diagnostic); |
| 49071 | } |
| 49072 | function createSymbol(flags, name, checkFlags) { |
| 49073 | symbolCount++; |
| 49074 | var symbol = new Symbol(flags | 33554432 /* SymbolFlags.Transient */, name); |
no test coverage detected