Lines Matching refs:parse_error
126 …CHECK((std::string(json::lexer::token_type_name(json::lexer::token_type::parse_error)) == "<parse …
161 CHECK((res != json::lexer::token_type::parse_error));
178 CHECK((res == json::lexer::token_type::parse_error));
196 CHECK((scan_string("/", false) == json::lexer::token_type::parse_error));
199 CHECK((scan_string("/!", false) == json::lexer::token_type::parse_error));
201 CHECK((scan_string("/*", false) == json::lexer::token_type::parse_error));
203 CHECK((scan_string("/**", false) == json::lexer::token_type::parse_error));
206 CHECK((scan_string("//", false) == json::lexer::token_type::parse_error));
208 CHECK((scan_string("/**/", false) == json::lexer::token_type::parse_error));
210 CHECK((scan_string("/** /", false) == json::lexer::token_type::parse_error));
213 CHECK((scan_string("/***/", false) == json::lexer::token_type::parse_error));
215 CHECK((scan_string("/* true */", false) == json::lexer::token_type::parse_error));
217 CHECK((scan_string("/*/**/", false) == json::lexer::token_type::parse_error));
219 CHECK((scan_string("/*/* */", false) == json::lexer::token_type::parse_error));
225 CHECK((scan_string("/", true) == json::lexer::token_type::parse_error));
228 CHECK((scan_string("/!", true) == json::lexer::token_type::parse_error));
230 CHECK((scan_string("/*", true) == json::lexer::token_type::parse_error));
232 CHECK((scan_string("/**", true) == json::lexer::token_type::parse_error));
237 CHECK((scan_string("/** /", true) == json::lexer::token_type::parse_error));