(decl)
| 16405 | } |
| 16406 | ts.isStringDoubleQuoted = isStringDoubleQuoted; |
| 16407 | function isAssignmentDeclaration(decl) { |
| 16408 | return ts.isBinaryExpression(decl) || isAccessExpression(decl) || ts.isIdentifier(decl) || ts.isCallExpression(decl); |
| 16409 | } |
| 16410 | ts.isAssignmentDeclaration = isAssignmentDeclaration; |
| 16411 | /** Get the initializer, taking into account defaulted Javascript initializers */ |
| 16412 | function getEffectiveInitializer(node) { |
no test coverage detected
searching dependent graphs…