(str, sourceFile)
| 16401 | } |
| 16402 | ts.isSingleOrDoubleQuote = isSingleOrDoubleQuote; |
| 16403 | function isStringDoubleQuoted(str, sourceFile) { |
| 16404 | return getSourceTextOfNodeFromSourceFile(sourceFile, str).charCodeAt(0) === 34 /* CharacterCodes.doubleQuote */; |
| 16405 | } |
| 16406 | ts.isStringDoubleQuoted = isStringDoubleQuoted; |
| 16407 | function isAssignmentDeclaration(decl) { |
| 16408 | return ts.isBinaryExpression(decl) || isAccessExpression(decl) || ts.isIdentifier(decl) || ts.isCallExpression(decl); |
nothing calls this directly
no test coverage detected
searching dependent graphs…