(pos, context, sourceFile)
| 129064 | return startLine !== endLine; |
| 129065 | } |
| 129066 | function positionIsASICandidate(pos, context, sourceFile) { |
| 129067 | var contextAncestor = ts.findAncestor(context, function (ancestor) { |
| 129068 | if (ancestor.end !== pos) { |
| 129069 | return "quit"; |
| 129070 | } |
| 129071 | return ts.syntaxMayBeASICandidate(ancestor.kind); |
| 129072 | }); |
| 129073 | return !!contextAncestor && nodeIsASICandidate(contextAncestor, sourceFile); |
| 129074 | } |
| 129075 | ts.positionIsASICandidate = positionIsASICandidate; |
| 129076 | function probablyUsesSemicolons(sourceFile) { |
| 129077 | var withSemicolon = 0; |
nothing calls this directly
no test coverage detected