(symbol)
| 71465 | } |
| 71466 | } |
| 71467 | function isConstVariable(symbol) { |
| 71468 | return symbol.flags & 3 /* SymbolFlags.Variable */ && (getDeclarationNodeFlagsFromSymbol(symbol) & 2 /* NodeFlags.Const */) !== 0; |
| 71469 | } |
| 71470 | /** remove undefined from the annotated type of a parameter when there is an initializer (that doesn't include undefined) */ |
| 71471 | function removeOptionalityFromDeclaredType(declaredType, declaration) { |
| 71472 | if (pushTypeResolution(declaration.symbol, 2 /* TypeSystemPropertyName.DeclaredType */)) { |
no test coverage detected