(identifier, start, end)
| 142794 | return false; |
| 142795 | } |
| 142796 | function isAllPunctuation(identifier, start, end) { |
| 142797 | return every(identifier, function (ch) { return charIsPunctuation(ch) && ch !== 95 /* CharacterCodes._ */; }, start, end); |
| 142798 | } |
| 142799 | function transitionFromUpperToLower(identifier, index, wordStart) { |
| 142800 | // Cases this supports: |
| 142801 | // 1) IDisposable -> I, Disposable |
no test coverage detected
searching dependent graphs…