(c)
| 4348 | } |
| 4349 | |
| 4350 | function isNameStart(c){ |
| 4351 | return c !== null && (/[a-z_\u0080-\uFFFF\\]/i.test(c)); |
| 4352 | } |
| 4353 | |
| 4354 | function isNameChar(c){ |
| 4355 | return c !== null && (isNameStart(c) || /[0-9\-\\]/.test(c)); |
no outgoing calls
no test coverage detected