(ch)
| 9080 | } |
| 9081 | |
| 9082 | function isJSXIdentifierPart(ch) { |
| 9083 | // exclude backslash (\) and add hyphen (-) |
| 9084 | return (ch !== 92) && (ch === 45 || isIdentifierPart(ch)); |
| 9085 | } |
| 9086 | |
| 9087 | function scanJSXIdentifier() { |
| 9088 | var ch, start, value = ''; |
no test coverage detected