(node)
| 17376 | } |
| 17377 | ts.getAllSuperTypeNodes = getAllSuperTypeNodes; |
| 17378 | function getInterfaceBaseTypeNodes(node) { |
| 17379 | var heritageClause = getHeritageClause(node.heritageClauses, 94 /* SyntaxKind.ExtendsKeyword */); |
| 17380 | return heritageClause ? heritageClause.types : undefined; |
| 17381 | } |
| 17382 | ts.getInterfaceBaseTypeNodes = getInterfaceBaseTypeNodes; |
| 17383 | function getHeritageClause(clauses, kind) { |
| 17384 | if (clauses) { |
no test coverage detected