(location, declarations, deprecatedEntity)
| 49060 | return !!(getDeclarationNodeFlagsFromSymbol(symbol) & 268435456 /* NodeFlags.Deprecated */); |
| 49061 | } |
| 49062 | function addDeprecatedSuggestion(location, declarations, deprecatedEntity) { |
| 49063 | var diagnostic = ts.createDiagnosticForNode(location, ts.Diagnostics._0_is_deprecated, deprecatedEntity); |
| 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) |
no test coverage detected