| 10405 | } |
| 10406 | |
| 10407 | constexpr bool is_ascii_letter_or_digit(char32_t c) noexcept { |
| 10408 | return (c >= 'A' && c <= 'Z') || (c >= 'a' && c <= 'z') || |
| 10409 | (c >= '0' && c <= '9'); |
| 10410 | } |
| 10411 | |
| 10412 | bool valid_name_code_point(char32_t code_point, bool first) { |
| 10413 | // https://tc39.es/ecma262/#prod-IdentifierStart |
no outgoing calls
no test coverage detected