(ch)
| 2673 | // 7.3 Line Terminators |
| 2674 | |
| 2675 | function isLineTerminator(ch) { |
| 2676 | return (ch === 10) || (ch === 13) || (ch === 0x2028) || (ch === 0x2029); |
| 2677 | } |
| 2678 | |
| 2679 | // 7.6 Identifier Names and Identifiers |
| 2680 |
no outgoing calls
no test coverage detected