(symbol)
| 77463 | return node.name.escapedText === "meta" ? getGlobalImportMetaType() : errorType; |
| 77464 | } |
| 77465 | function getTypeOfParameter(symbol) { |
| 77466 | var type = getTypeOfSymbol(symbol); |
| 77467 | if (strictNullChecks) { |
| 77468 | var declaration = symbol.valueDeclaration; |
| 77469 | if (declaration && ts.hasInitializer(declaration)) { |
| 77470 | return getOptionalType(type); |
| 77471 | } |
| 77472 | } |
| 77473 | return type; |
| 77474 | } |
| 77475 | function getTupleElementLabel(d) { |
| 77476 | ts.Debug.assert(ts.isIdentifier(d.name)); // Parameter declarations could be binding patterns, but we only allow identifier names |
| 77477 | return d.name.escapedText; |
no test coverage detected
searching dependent graphs…