(ch)
| 212 | }; |
| 213 | |
| 214 | function is_digit(ch) { |
| 215 | ch = ch.charCodeAt(0); |
| 216 | return ch >= 48 && ch <= 57; |
| 217 | }; |
| 218 | |
| 219 | function parse_js_number(num) { |
| 220 | if (RE_HEX_NUMBER.test(num)) { |
no outgoing calls
no test coverage detected
searching dependent graphs…