(symbol)
| 74463 | return thisContainer && ts.isFunctionLike(thisContainer) ? ts.getThisParameter(thisContainer) : undefined; |
| 74464 | } |
| 74465 | function symbolHasNonMethodDeclaration(symbol) { |
| 74466 | return !!forEachProperty(symbol, function (prop) { return !(prop.flags & 8192 /* SymbolFlags.Method */); }); |
| 74467 | } |
| 74468 | function checkNonNullExpression(node) { |
| 74469 | return checkNonNullType(checkExpression(node), node); |
| 74470 | } |
no test coverage detected