@ -266,8 +266,7 @@ int parse_nonnegative_int(const Char *&s) {
}
template <typename Char>
inline bool is_name_start(Char c)
{
inline bool is_name_start(Char c) {
return ('a' <= c && c <= 'z') || ('A' <= c && c <= 'Z') || '_' == c;
The note is not visible to the blocked user.