(text, start)
| 30678 | } |
| 30679 | /*@internal*/ |
| 30680 | function isJSDocLikeText(text, start) { |
| 30681 | return text.charCodeAt(start + 1) === 42 /* CharacterCodes.asterisk */ && |
| 30682 | text.charCodeAt(start + 2) === 42 /* CharacterCodes.asterisk */ && |
| 30683 | text.charCodeAt(start + 3) !== 47 /* CharacterCodes.slash */; |
| 30684 | } |
| 30685 | ts.isJSDocLikeText = isJSDocLikeText; |
| 30686 | /*@internal*/ |
| 30687 | function isFileProbablyExternalModule(sourceFile) { |
no outgoing calls
no test coverage detected