| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2022-03-13 16:09:41 -06:00
										 |  |  |  |  * Copyright (c) 2020-2022, the SerenityOS developers. | 
					
						
							| 
									
										
										
										
											2023-02-13 13:57:40 +00:00
										 |  |  |  |  * Copyright (c) 2021-2023, Sam Atkins <atkinssj@serenityos.org> | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |  * | 
					
						
							| 
									
										
										
										
											2021-04-22 01:24:48 -07:00
										 |  |  |  |  * SPDX-License-Identifier: BSD-2-Clause | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |  */ | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-07-23 13:06:31 +01:00
										 |  |  |  | #include <AK/Debug.h>
 | 
					
						
							| 
									
										
										
										
											2021-04-24 20:21:18 -07:00
										 |  |  |  | #include <AK/SourceLocation.h>
 | 
					
						
							| 
									
										
										
										
											2025-06-26 19:06:46 -04:00
										 |  |  |  | #include <AK/StringConversions.h>
 | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  | #include <AK/Vector.h>
 | 
					
						
							|  |  |  |  | #include <LibTextCodec/Decoder.h>
 | 
					
						
							| 
									
										
										
										
											2024-11-15 16:15:04 +11:00
										 |  |  |  | #include <LibWeb/CSS/CharacterTypes.h>
 | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  | #include <LibWeb/CSS/Parser/Tokenizer.h>
 | 
					
						
							| 
									
										
										
										
											2023-02-15 11:24:38 +00:00
										 |  |  |  | #include <LibWeb/Infra/Strings.h>
 | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-12 15:10:08 +01:00
										 |  |  |  | namespace Web::CSS::Parser { | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-17 16:49:45 +01:00
										 |  |  |  | // U+FFFD REPLACEMENT CHARACTER (<28>)
 | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  | #define REPLACEMENT_CHARACTER 0xFFFD
 | 
					
						
							| 
									
										
										
										
											2022-03-13 16:09:41 -06:00
										 |  |  |  | static constexpr u32 TOKENIZER_EOF = 0xFFFFFFFF; | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-01 20:58:27 +03:00
										 |  |  |  | static inline void log_parse_error(SourceLocation const& location = SourceLocation::current()) | 
					
						
							| 
									
										
										
										
											2021-04-24 20:21:18 -07:00
										 |  |  |  | { | 
					
						
							| 
									
										
										
										
											2021-07-23 13:06:31 +01:00
										 |  |  |  |     dbgln_if(CSS_TOKENIZER_DEBUG, "Parse error (css tokenization) {} ", location); | 
					
						
							| 
									
										
										
										
											2021-04-24 20:21:18 -07:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-07-02 19:44:43 +01:00
										 |  |  |  | static inline bool is_eof(u32 code_point) | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  |     return code_point == TOKENIZER_EOF; | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-01 10:01:11 +02:00
										 |  |  |  | static inline bool is_quotation_mark(u32 code_point) | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  | { | 
					
						
							| 
									
										
										
										
											2021-06-01 10:01:11 +02:00
										 |  |  |  |     return code_point == 0x22; | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-01 10:01:11 +02:00
										 |  |  |  | static inline bool is_hyphen_minus(u32 code_point) | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  | { | 
					
						
							| 
									
										
										
										
											2021-06-01 10:01:11 +02:00
										 |  |  |  |     return code_point == 0x2D; | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-01 10:01:11 +02:00
										 |  |  |  | static inline bool is_number_sign(u32 code_point) | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  | { | 
					
						
							| 
									
										
										
										
											2021-06-01 10:01:11 +02:00
										 |  |  |  |     return code_point == 0x23; | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-01 10:01:11 +02:00
										 |  |  |  | static inline bool is_reverse_solidus(u32 code_point) | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  | { | 
					
						
							| 
									
										
										
										
											2021-06-01 10:01:11 +02:00
										 |  |  |  |     return code_point == 0x5C; | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-01 10:01:11 +02:00
										 |  |  |  | static inline bool is_apostrophe(u32 code_point) | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  | { | 
					
						
							| 
									
										
										
										
											2021-06-01 10:01:11 +02:00
										 |  |  |  |     return code_point == 0x27; | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-01 10:01:11 +02:00
										 |  |  |  | static inline bool is_left_paren(u32 code_point) | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  | { | 
					
						
							| 
									
										
										
										
											2021-06-01 10:01:11 +02:00
										 |  |  |  |     return code_point == 0x28; | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-01 10:01:11 +02:00
										 |  |  |  | static inline bool is_right_paren(u32 code_point) | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  | { | 
					
						
							| 
									
										
										
										
											2021-06-01 10:01:11 +02:00
										 |  |  |  |     return code_point == 0x29; | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-01 10:01:11 +02:00
										 |  |  |  | static inline bool is_plus_sign(u32 code_point) | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  | { | 
					
						
							| 
									
										
										
										
											2021-06-01 10:01:11 +02:00
										 |  |  |  |     return code_point == 0x2B; | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-01 10:01:11 +02:00
										 |  |  |  | static inline bool is_comma(u32 code_point) | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  | { | 
					
						
							| 
									
										
										
										
											2021-06-01 10:01:11 +02:00
										 |  |  |  |     return code_point == 0x2C; | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-01 10:01:11 +02:00
										 |  |  |  | static inline bool is_full_stop(u32 code_point) | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  | { | 
					
						
							| 
									
										
										
										
											2021-06-01 10:01:11 +02:00
										 |  |  |  |     return code_point == 0x2E; | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-01 10:01:11 +02:00
										 |  |  |  | static inline bool is_asterisk(u32 code_point) | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  | { | 
					
						
							| 
									
										
										
										
											2021-06-01 10:01:11 +02:00
										 |  |  |  |     return code_point == 0x2A; | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-01 10:01:11 +02:00
										 |  |  |  | static inline bool is_solidus(u32 code_point) | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  | { | 
					
						
							| 
									
										
										
										
											2021-06-01 10:01:11 +02:00
										 |  |  |  |     return code_point == 0x2F; | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-01 10:01:11 +02:00
										 |  |  |  | static inline bool is_colon(u32 code_point) | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  | { | 
					
						
							| 
									
										
										
										
											2021-06-01 10:01:11 +02:00
										 |  |  |  |     return code_point == 0x3A; | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-01 10:01:11 +02:00
										 |  |  |  | static inline bool is_semicolon(u32 code_point) | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  | { | 
					
						
							| 
									
										
										
										
											2021-06-01 10:01:11 +02:00
										 |  |  |  |     return code_point == 0x3B; | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-01 10:01:11 +02:00
										 |  |  |  | static inline bool is_less_than_sign(u32 code_point) | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  | { | 
					
						
							| 
									
										
										
										
											2021-06-01 10:01:11 +02:00
										 |  |  |  |     return code_point == 0x3C; | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-01 10:01:11 +02:00
										 |  |  |  | static inline bool is_greater_than_sign(u32 code_point) | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  | { | 
					
						
							| 
									
										
										
										
											2021-06-01 10:01:11 +02:00
										 |  |  |  |     return code_point == 0x3E; | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-01 10:01:11 +02:00
										 |  |  |  | static inline bool is_at(u32 code_point) | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  | { | 
					
						
							| 
									
										
										
										
											2021-06-01 10:01:11 +02:00
										 |  |  |  |     return code_point == 0x40; | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-01 10:01:11 +02:00
										 |  |  |  | static inline bool is_open_square_bracket(u32 code_point) | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  | { | 
					
						
							| 
									
										
										
										
											2021-06-01 10:01:11 +02:00
										 |  |  |  |     return code_point == 0x5B; | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-01 10:01:11 +02:00
										 |  |  |  | static inline bool is_closed_square_bracket(u32 code_point) | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  | { | 
					
						
							| 
									
										
										
										
											2021-06-01 10:01:11 +02:00
										 |  |  |  |     return code_point == 0x5D; | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-01 10:01:11 +02:00
										 |  |  |  | static inline bool is_open_curly_bracket(u32 code_point) | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  | { | 
					
						
							| 
									
										
										
										
											2021-06-01 10:01:11 +02:00
										 |  |  |  |     return code_point == 0x7B; | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-01 10:01:11 +02:00
										 |  |  |  | static inline bool is_closed_curly_bracket(u32 code_point) | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  | { | 
					
						
							| 
									
										
										
										
											2021-06-01 10:01:11 +02:00
										 |  |  |  |     return code_point == 0x7D; | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-01 10:01:11 +02:00
										 |  |  |  | static inline bool is_percent(u32 code_point) | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  | { | 
					
						
							| 
									
										
										
										
											2021-06-01 10:01:11 +02:00
										 |  |  |  |     return code_point == 0x25; | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-01 10:01:11 +02:00
										 |  |  |  | static inline bool is_exclamation_mark(u32 code_point) | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  | { | 
					
						
							| 
									
										
										
										
											2021-06-01 10:01:11 +02:00
										 |  |  |  |     return code_point == 0x21; | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-01 10:01:11 +02:00
										 |  |  |  | static inline bool is_e(u32 code_point) | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  | { | 
					
						
							| 
									
										
										
										
											2021-06-01 10:01:11 +02:00
										 |  |  |  |     return code_point == 0x65; | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-01 10:01:11 +02:00
										 |  |  |  | static inline bool is_E(u32 code_point) | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  | { | 
					
						
							| 
									
										
										
										
											2021-06-01 10:01:11 +02:00
										 |  |  |  |     return code_point == 0x45; | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-07-26 15:11:57 +01:00
										 |  |  |  | Vector<Token> Tokenizer::tokenize(StringView input, StringView encoding) | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  | { | 
					
						
							| 
									
										
										
										
											2022-10-03 16:38:46 +01:00
										 |  |  |  |     // https://www.w3.org/TR/css-syntax-3/#css-filter-code-points
 | 
					
						
							| 
									
										
										
										
											2024-07-26 15:11:57 +01:00
										 |  |  |  |     auto filter_code_points = [](StringView input, auto encoding) -> String { | 
					
						
							| 
									
										
										
										
											2023-02-17 17:45:08 +00:00
										 |  |  |  |         auto decoder = TextCodec::decoder_for(encoding); | 
					
						
							|  |  |  |  |         VERIFY(decoder.has_value()); | 
					
						
							| 
									
										
										
										
											2022-10-03 16:38:46 +01:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-07-26 15:11:57 +01:00
										 |  |  |  |         auto decoded_input = MUST(decoder->to_utf8(input)); | 
					
						
							| 
									
										
										
										
											2024-07-20 14:32:35 +02:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-11-20 20:55:46 +11:00
										 |  |  |  |         // OPTIMIZATION: If the input doesn't contain any filterable characters, we can skip the filtering
 | 
					
						
							|  |  |  |  |         bool const contains_filterable = [&] { | 
					
						
							|  |  |  |  |             for (auto code_point : decoded_input.code_points()) { | 
					
						
							|  |  |  |  |                 if (code_point == '\r' || code_point == '\f' || code_point == 0x00 || is_unicode_surrogate(code_point)) | 
					
						
							| 
									
										
										
										
											2024-07-20 14:32:35 +02:00
										 |  |  |  |                     return true; | 
					
						
							|  |  |  |  |             } | 
					
						
							|  |  |  |  |             return false; | 
					
						
							|  |  |  |  |         }(); | 
					
						
							| 
									
										
										
										
											2024-11-20 20:55:46 +11:00
										 |  |  |  |         if (!contains_filterable) { | 
					
						
							| 
									
										
										
										
											2024-07-20 14:32:35 +02:00
										 |  |  |  |             return decoded_input; | 
					
						
							|  |  |  |  |         } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-10-03 16:38:46 +01:00
										 |  |  |  |         StringBuilder builder { input.length() }; | 
					
						
							|  |  |  |  |         bool last_was_carriage_return = false; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |         // To filter code points from a stream of (unfiltered) code points input:
 | 
					
						
							| 
									
										
										
										
											2024-07-20 14:32:35 +02:00
										 |  |  |  |         for (auto code_point : decoded_input.code_points()) { | 
					
						
							| 
									
										
										
										
											2023-03-06 14:19:39 +00:00
										 |  |  |  |             // Replace any U+000D CARRIAGE RETURN (CR) code points,
 | 
					
						
							|  |  |  |  |             // U+000C FORM FEED (FF) code points,
 | 
					
						
							|  |  |  |  |             // or pairs of U+000D CARRIAGE RETURN (CR) followed by U+000A LINE FEED (LF)
 | 
					
						
							|  |  |  |  |             // in input by a single U+000A LINE FEED (LF) code point.
 | 
					
						
							|  |  |  |  |             if (code_point == '\r') { | 
					
						
							|  |  |  |  |                 if (last_was_carriage_return) { | 
					
						
							| 
									
										
										
										
											2024-07-26 15:11:57 +01:00
										 |  |  |  |                     builder.append('\n'); | 
					
						
							| 
									
										
										
										
											2023-03-06 14:19:39 +00:00
										 |  |  |  |                 } else { | 
					
						
							|  |  |  |  |                     last_was_carriage_return = true; | 
					
						
							|  |  |  |  |                 } | 
					
						
							|  |  |  |  |             } else { | 
					
						
							|  |  |  |  |                 if (last_was_carriage_return) | 
					
						
							| 
									
										
										
										
											2024-07-26 15:11:57 +01:00
										 |  |  |  |                     builder.append('\n'); | 
					
						
							| 
									
										
										
										
											2023-03-06 14:19:39 +00:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  |                 if (code_point == '\n') { | 
					
						
							|  |  |  |  |                     if (!last_was_carriage_return) | 
					
						
							| 
									
										
										
										
											2024-07-26 15:11:57 +01:00
										 |  |  |  |                         builder.append('\n'); | 
					
						
							| 
									
										
										
										
											2023-03-06 14:19:39 +00:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  |                 } else if (code_point == '\f') { | 
					
						
							| 
									
										
										
										
											2024-07-26 15:11:57 +01:00
										 |  |  |  |                     builder.append('\n'); | 
					
						
							| 
									
										
										
										
											2023-03-06 14:19:39 +00:00
										 |  |  |  |                     // Replace any U+0000 NULL or surrogate code points in input with U+FFFD REPLACEMENT CHARACTER (<28>).
 | 
					
						
							| 
									
										
										
										
											2024-11-20 20:55:46 +11:00
										 |  |  |  |                 } else if (code_point == 0x00 || is_unicode_surrogate(code_point)) { | 
					
						
							| 
									
										
										
										
											2024-07-26 15:11:57 +01:00
										 |  |  |  |                     builder.append_code_point(REPLACEMENT_CHARACTER); | 
					
						
							| 
									
										
										
										
											2023-03-06 14:19:39 +00:00
										 |  |  |  |                 } else { | 
					
						
							| 
									
										
										
										
											2024-07-26 15:11:57 +01:00
										 |  |  |  |                     builder.append_code_point(code_point); | 
					
						
							| 
									
										
										
										
											2023-03-06 14:19:39 +00:00
										 |  |  |  |                 } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |                 last_was_carriage_return = false; | 
					
						
							|  |  |  |  |             } | 
					
						
							| 
									
										
										
										
											2024-07-20 14:32:35 +02:00
										 |  |  |  |         } | 
					
						
							| 
									
										
										
										
											2024-03-23 11:33:26 +01:00
										 |  |  |  |         return builder.to_string_without_validation(); | 
					
						
							| 
									
										
										
										
											2022-10-03 16:38:46 +01:00
										 |  |  |  |     }; | 
					
						
							| 
									
										
										
										
											2021-08-29 11:47:26 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-07-26 15:11:57 +01:00
										 |  |  |  |     Tokenizer tokenizer { filter_code_points(input, encoding) }; | 
					
						
							| 
									
										
										
										
											2023-03-06 14:19:39 +00:00
										 |  |  |  |     return tokenizer.tokenize(); | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-03-06 14:19:39 +00:00
										 |  |  |  | Tokenizer::Tokenizer(String decoded_input) | 
					
						
							|  |  |  |  |     : m_decoded_input(move(decoded_input)) | 
					
						
							|  |  |  |  |     , m_utf8_view(m_decoded_input) | 
					
						
							|  |  |  |  |     , m_utf8_iterator(m_utf8_view.begin()) | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-07-26 15:11:57 +01:00
										 |  |  |  | Vector<Token> Tokenizer::tokenize() | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  | { | 
					
						
							|  |  |  |  |     Vector<Token> tokens; | 
					
						
							|  |  |  |  |     for (;;) { | 
					
						
							| 
									
										
										
										
											2021-10-21 21:25:14 +01:00
										 |  |  |  |         auto token_start = m_position; | 
					
						
							| 
									
										
										
										
											2024-07-26 15:11:57 +01:00
										 |  |  |  |         auto token = consume_a_token(); | 
					
						
							| 
									
										
										
										
											2025-07-09 12:59:31 +01:00
										 |  |  |  |         token.set_position_range({}, token_start, m_position); | 
					
						
							| 
									
										
										
										
											2024-07-26 15:11:57 +01:00
										 |  |  |  |         tokens.append(token); | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-07-03 15:06:53 +01:00
										 |  |  |  |         if (token.is(Token::Type::EndOfFile)) { | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |             return tokens; | 
					
						
							|  |  |  |  |         } | 
					
						
							|  |  |  |  |     } | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-07-02 19:44:43 +01:00
										 |  |  |  | u32 Tokenizer::next_code_point() | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  | { | 
					
						
							|  |  |  |  |     if (m_utf8_iterator == m_utf8_view.end()) | 
					
						
							| 
									
										
										
										
											2021-07-02 19:44:43 +01:00
										 |  |  |  |         return TOKENIZER_EOF; | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |     m_prev_utf8_iterator = m_utf8_iterator; | 
					
						
							|  |  |  |  |     ++m_utf8_iterator; | 
					
						
							| 
									
										
										
										
											2021-10-21 21:25:14 +01:00
										 |  |  |  |     auto code_point = *m_prev_utf8_iterator; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |     m_prev_position = m_position; | 
					
						
							|  |  |  |  |     if (is_newline(code_point)) { | 
					
						
							|  |  |  |  |         m_position.line++; | 
					
						
							|  |  |  |  |         m_position.column = 0; | 
					
						
							|  |  |  |  |     } else { | 
					
						
							|  |  |  |  |         m_position.column++; | 
					
						
							|  |  |  |  |     } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |     dbgln_if(CSS_TOKENIZER_DEBUG, "(Tokenizer) Next code_point: {:d}", code_point); | 
					
						
							|  |  |  |  |     return code_point; | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-07-02 19:44:43 +01:00
										 |  |  |  | u32 Tokenizer::peek_code_point(size_t offset) const | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  | { | 
					
						
							|  |  |  |  |     auto it = m_utf8_iterator; | 
					
						
							|  |  |  |  |     for (size_t i = 0; i < offset && it != m_utf8_view.end(); ++i) | 
					
						
							|  |  |  |  |         ++it; | 
					
						
							|  |  |  |  |     if (it == m_utf8_view.end()) | 
					
						
							| 
									
										
										
										
											2021-07-02 19:44:43 +01:00
										 |  |  |  |         return TOKENIZER_EOF; | 
					
						
							| 
									
										
										
										
											2021-08-04 10:57:50 +01:00
										 |  |  |  |     dbgln_if(CSS_TOKENIZER_DEBUG, "(Tokenizer) Peek code_point: {:d}", *m_prev_utf8_iterator); | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |     return *it; | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-07-02 19:44:43 +01:00
										 |  |  |  | U32Twin Tokenizer::peek_twin() const | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  | { | 
					
						
							| 
									
										
										
										
											2021-08-04 10:57:50 +01:00
										 |  |  |  |     U32Twin values { TOKENIZER_EOF, TOKENIZER_EOF }; | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |     auto it = m_utf8_iterator; | 
					
						
							|  |  |  |  |     for (size_t i = 0; i < 2 && it != m_utf8_view.end(); ++i) { | 
					
						
							| 
									
										
										
										
											2021-08-04 10:57:50 +01:00
										 |  |  |  |         values.set(i, *it); | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |         ++it; | 
					
						
							|  |  |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-08-04 10:57:50 +01:00
										 |  |  |  |     dbgln_if(CSS_TOKENIZER_DEBUG, "(Tokenizer) Peek twin: {:d},{:d}", values.first, values.second); | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |     return values; | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-07-02 19:44:43 +01:00
										 |  |  |  | U32Triplet Tokenizer::peek_triplet() const | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  | { | 
					
						
							| 
									
										
										
										
											2021-08-04 10:57:50 +01:00
										 |  |  |  |     U32Triplet values { TOKENIZER_EOF, TOKENIZER_EOF, TOKENIZER_EOF }; | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |     auto it = m_utf8_iterator; | 
					
						
							|  |  |  |  |     for (size_t i = 0; i < 3 && it != m_utf8_view.end(); ++i) { | 
					
						
							| 
									
										
										
										
											2021-08-04 10:57:50 +01:00
										 |  |  |  |         values.set(i, *it); | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |         ++it; | 
					
						
							|  |  |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-08-04 10:57:50 +01:00
										 |  |  |  |     dbgln_if(CSS_TOKENIZER_DEBUG, "(Tokenizer) Peek triplet: {:d},{:d},{:d}", values.first, values.second, values.third); | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |     return values; | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-24 16:08:35 +00:00
										 |  |  |  | U32Twin Tokenizer::start_of_input_stream_twin() | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  |     U32Twin twin; | 
					
						
							|  |  |  |  |     // FIXME: Reconsuming just to read the current code point again is weird.
 | 
					
						
							|  |  |  |  |     reconsume_current_input_code_point(); | 
					
						
							|  |  |  |  |     twin.first = next_code_point(); | 
					
						
							|  |  |  |  |     twin.second = peek_code_point(); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |     return twin; | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | U32Triplet Tokenizer::start_of_input_stream_triplet() | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  |     U32Triplet triplet; | 
					
						
							|  |  |  |  |     // FIXME: Reconsuming just to read the current code point again is weird.
 | 
					
						
							|  |  |  |  |     reconsume_current_input_code_point(); | 
					
						
							|  |  |  |  |     triplet.first = next_code_point(); | 
					
						
							|  |  |  |  |     auto next_two = peek_twin(); | 
					
						
							|  |  |  |  |     triplet.second = next_two.first; | 
					
						
							|  |  |  |  |     triplet.third = next_two.second; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |     return triplet; | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-07-03 14:00:41 +01:00
										 |  |  |  | Token Tokenizer::create_eof_token() | 
					
						
							|  |  |  |  | { | 
					
						
							| 
									
										
										
										
											2025-07-09 12:59:31 +01:00
										 |  |  |  |     return Token::create(Token::Type::EndOfFile); | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-21 16:49:12 +01:00
										 |  |  |  | // https://www.w3.org/TR/css-syntax-3/#consume-escaped-code-point
 | 
					
						
							| 
									
										
										
										
											2021-06-01 10:01:11 +02:00
										 |  |  |  | u32 Tokenizer::consume_escaped_code_point() | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  | { | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |     // This section describes how to consume an escaped code point.
 | 
					
						
							|  |  |  |  |     // It assumes that the U+005C REVERSE SOLIDUS (\) has already been consumed and that the next
 | 
					
						
							|  |  |  |  |     // input code point has already been verified to be part of a valid escape.
 | 
					
						
							|  |  |  |  |     // It will return a code point.
 | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |     // Consume the next input code point.
 | 
					
						
							|  |  |  |  |     auto input = next_code_point(); | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |     // hex digit
 | 
					
						
							| 
									
										
										
										
											2024-11-15 16:15:04 +11:00
										 |  |  |  |     if (is_hex_digit(input)) { | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |         // Consume as many hex digits as possible, but no more than 5.
 | 
					
						
							|  |  |  |  |         // Note that this means 1-6 hex digits have been consumed in total.
 | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |         StringBuilder builder; | 
					
						
							|  |  |  |  |         builder.append_code_point(input); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |         size_t counter = 0; | 
					
						
							| 
									
										
										
										
											2024-11-15 16:15:04 +11:00
										 |  |  |  |         while (is_hex_digit(peek_code_point()) && counter++ < 5) { | 
					
						
							| 
									
										
										
										
											2021-07-02 19:44:43 +01:00
										 |  |  |  |             builder.append_code_point(next_code_point()); | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |         } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |         // If the next input code point is whitespace, consume it as well.
 | 
					
						
							| 
									
										
										
										
											2021-07-02 19:44:43 +01:00
										 |  |  |  |         if (is_whitespace(peek_code_point())) { | 
					
						
							| 
									
										
										
										
											2021-06-01 10:01:11 +02:00
										 |  |  |  |             (void)next_code_point(); | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |         } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |         // Interpret the hex digits as a hexadecimal number.
 | 
					
						
							| 
									
										
										
										
											2025-06-26 19:06:46 -04:00
										 |  |  |  |         auto unhexed = AK::parse_hexadecimal_number<u32>(builder.string_view()).value_or(0); | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |         // If this number is zero, or is for a surrogate, or is greater than the maximum allowed
 | 
					
						
							|  |  |  |  |         // code point, return U+FFFD REPLACEMENT CHARACTER (<28>).
 | 
					
						
							| 
									
										
										
										
											2021-06-01 21:18:08 +02:00
										 |  |  |  |         if (unhexed == 0 || is_unicode_surrogate(unhexed) || is_greater_than_maximum_allowed_code_point(unhexed)) { | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |             return REPLACEMENT_CHARACTER; | 
					
						
							|  |  |  |  |         } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |         // Otherwise, return the code point with that value.
 | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |         return unhexed; | 
					
						
							|  |  |  |  |     } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |     // EOF
 | 
					
						
							|  |  |  |  |     if (is_eof(input)) { | 
					
						
							|  |  |  |  |         // This is a parse error. Return U+FFFD REPLACEMENT CHARACTER (<28>).
 | 
					
						
							| 
									
										
										
										
											2021-04-24 20:21:18 -07:00
										 |  |  |  |         log_parse_error(); | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |         return REPLACEMENT_CHARACTER; | 
					
						
							|  |  |  |  |     } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |     // anything else
 | 
					
						
							|  |  |  |  |     // Return the current input code point.
 | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |     return input; | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-21 16:49:12 +01:00
										 |  |  |  | // https://www.w3.org/TR/css-syntax-3/#consume-ident-like-token
 | 
					
						
							| 
									
										
										
										
											2024-07-26 15:11:57 +01:00
										 |  |  |  | Token Tokenizer::consume_an_ident_like_token() | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  | { | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |     // This section describes how to consume an ident-like token from a stream of code points.
 | 
					
						
							|  |  |  |  |     // It returns an <ident-token>, <function-token>, <url-token>, or <bad-url-token>.
 | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-10-03 16:05:07 +01:00
										 |  |  |  |     // Consume an ident sequence, and let string be the result.
 | 
					
						
							| 
									
										
										
										
											2023-03-22 15:25:20 +00:00
										 |  |  |  |     auto start_byte_offset = current_byte_offset(); | 
					
						
							| 
									
										
										
										
											2024-07-26 15:11:57 +01:00
										 |  |  |  |     auto string = consume_an_ident_sequence(); | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |     // If string’s value is an ASCII case-insensitive match for "url", and the next input code
 | 
					
						
							|  |  |  |  |     // point is U+0028 LEFT PARENTHESIS ((), consume it.
 | 
					
						
							| 
									
										
										
										
											2025-05-18 15:04:56 +12:00
										 |  |  |  |     if (string.equals_ignoring_ascii_case("url"sv) && is_left_paren(peek_code_point())) { | 
					
						
							| 
									
										
										
										
											2021-06-01 10:01:11 +02:00
										 |  |  |  |         (void)next_code_point(); | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |         // While the next two input code points are whitespace, consume the next input code point.
 | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |         for (;;) { | 
					
						
							| 
									
										
										
										
											2021-07-02 19:44:43 +01:00
										 |  |  |  |             auto maybe_whitespace = peek_twin(); | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |             if (!(is_whitespace(maybe_whitespace.first) && is_whitespace(maybe_whitespace.second))) { | 
					
						
							|  |  |  |  |                 break; | 
					
						
							|  |  |  |  |             } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-01 10:01:11 +02:00
										 |  |  |  |             (void)next_code_point(); | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |         } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |         // If the next one or two input code points are U+0022 QUOTATION MARK ("), U+0027 APOSTROPHE ('),
 | 
					
						
							|  |  |  |  |         // or whitespace followed by U+0022 QUOTATION MARK (") or U+0027 APOSTROPHE ('), then create a
 | 
					
						
							|  |  |  |  |         // <function-token> with its value set to string and return it.
 | 
					
						
							| 
									
										
										
										
											2021-07-02 19:44:43 +01:00
										 |  |  |  |         auto next_two = peek_twin(); | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |         if (is_quotation_mark(next_two.first) || is_apostrophe(next_two.first) || (is_whitespace(next_two.first) && (is_quotation_mark(next_two.second) || is_apostrophe(next_two.second)))) { | 
					
						
							| 
									
										
										
										
											2025-07-09 12:59:31 +01:00
										 |  |  |  |             return Token::create_function(move(string), input_since(start_byte_offset)); | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |         } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |         // Otherwise, consume a url token, and return it.
 | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |         return consume_a_url_token(); | 
					
						
							|  |  |  |  |     } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |     // Otherwise, if the next input code point is U+0028 LEFT PARENTHESIS ((), consume it.
 | 
					
						
							| 
									
										
										
										
											2021-07-02 19:44:43 +01:00
										 |  |  |  |     if (is_left_paren(peek_code_point())) { | 
					
						
							| 
									
										
										
										
											2021-06-01 10:01:11 +02:00
										 |  |  |  |         (void)next_code_point(); | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |         // Create a <function-token> with its value set to string and return it.
 | 
					
						
							| 
									
										
										
										
											2025-07-09 12:59:31 +01:00
										 |  |  |  |         return Token::create_function(move(string), input_since(start_byte_offset)); | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |     } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |     // Otherwise, create an <ident-token> with its value set to string and return it.
 | 
					
						
							| 
									
										
										
										
											2025-07-09 12:59:31 +01:00
										 |  |  |  |     return Token::create_ident(move(string), input_since(start_byte_offset)); | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-21 16:49:12 +01:00
										 |  |  |  | // https://www.w3.org/TR/css-syntax-3/#consume-number
 | 
					
						
							| 
									
										
										
										
											2022-03-21 21:01:27 +00:00
										 |  |  |  | Number Tokenizer::consume_a_number() | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  | { | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |     // This section describes how to consume a number from a stream of code points.
 | 
					
						
							|  |  |  |  |     // It returns a numeric value, and a type which is either "integer" or "number".
 | 
					
						
							|  |  |  |  |     //
 | 
					
						
							|  |  |  |  |     // Note: This algorithm does not do the verification of the first few code points
 | 
					
						
							|  |  |  |  |     // that are necessary to ensure a number can be obtained from the stream. Ensure
 | 
					
						
							|  |  |  |  |     // that the stream starts with a number before calling this algorithm.
 | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |     // Execute the following steps in order:
 | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |     // 1. Initially set type to "integer". Let repr be the empty string.
 | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |     StringBuilder repr; | 
					
						
							| 
									
										
										
										
											2022-03-21 21:01:27 +00:00
										 |  |  |  |     Number::Type type = Number::Type::Integer; | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |     // 2. If the next input code point is U+002B PLUS SIGN (+) or U+002D HYPHEN-MINUS (-),
 | 
					
						
							|  |  |  |  |     // consume it and append it to repr.
 | 
					
						
							| 
									
										
										
										
											2022-03-21 21:01:27 +00:00
										 |  |  |  |     bool has_explicit_sign = false; | 
					
						
							| 
									
										
										
										
											2021-07-02 19:44:43 +01:00
										 |  |  |  |     auto next_input = peek_code_point(); | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |     if (is_plus_sign(next_input) || is_hyphen_minus(next_input)) { | 
					
						
							| 
									
										
										
										
											2022-03-21 21:01:27 +00:00
										 |  |  |  |         has_explicit_sign = true; | 
					
						
							| 
									
										
										
										
											2021-07-02 19:44:43 +01:00
										 |  |  |  |         repr.append_code_point(next_code_point()); | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |     } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |     // 3. While the next input code point is a digit, consume it and append it to repr.
 | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |     for (;;) { | 
					
						
							| 
									
										
										
										
											2021-07-02 19:44:43 +01:00
										 |  |  |  |         auto digits = peek_code_point(); | 
					
						
							| 
									
										
										
										
											2024-11-15 16:15:04 +11:00
										 |  |  |  |         if (!is_digit(digits)) | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |             break; | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-07-02 19:44:43 +01:00
										 |  |  |  |         repr.append_code_point(next_code_point()); | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |     } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |     // 4. If the next 2 input code points are U+002E FULL STOP (.) followed by a digit, then:
 | 
					
						
							| 
									
										
										
										
											2021-07-02 19:44:43 +01:00
										 |  |  |  |     auto maybe_number = peek_twin(); | 
					
						
							| 
									
										
										
										
											2024-11-15 16:15:04 +11:00
										 |  |  |  |     if (is_full_stop(maybe_number.first) && is_digit(maybe_number.second)) { | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |         // 1. Consume them.
 | 
					
						
							|  |  |  |  |         // 2. Append them to repr.
 | 
					
						
							| 
									
										
										
										
											2021-07-02 19:44:43 +01:00
										 |  |  |  |         repr.append_code_point(next_code_point()); | 
					
						
							|  |  |  |  |         repr.append_code_point(next_code_point()); | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |         // 3. Set type to "number".
 | 
					
						
							| 
									
										
										
										
											2022-03-21 21:01:27 +00:00
										 |  |  |  |         type = Number::Type::Number; | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |         // 4. While the next input code point is a digit, consume it and append it to repr.
 | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |         for (;;) { | 
					
						
							| 
									
										
										
										
											2021-07-02 19:44:43 +01:00
										 |  |  |  |             auto digit = peek_code_point(); | 
					
						
							| 
									
										
										
										
											2024-11-15 16:15:04 +11:00
										 |  |  |  |             if (!is_digit(digit)) | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |                 break; | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-07-02 19:44:43 +01:00
										 |  |  |  |             repr.append_code_point(next_code_point()); | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |         } | 
					
						
							|  |  |  |  |     } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |     // 5. If the next 2 or 3 input code points are U+0045 LATIN CAPITAL LETTER E (E) or
 | 
					
						
							|  |  |  |  |     // U+0065 LATIN SMALL LETTER E (e), optionally followed by U+002D HYPHEN-MINUS (-)
 | 
					
						
							|  |  |  |  |     // or U+002B PLUS SIGN (+), followed by a digit, then:
 | 
					
						
							| 
									
										
										
										
											2021-07-02 19:44:43 +01:00
										 |  |  |  |     auto maybe_exp = peek_triplet(); | 
					
						
							| 
									
										
										
										
											2023-03-20 17:31:36 +00:00
										 |  |  |  |     if ((is_E(maybe_exp.first) || is_e(maybe_exp.first)) | 
					
						
							| 
									
										
										
										
											2024-11-15 16:15:04 +11:00
										 |  |  |  |         && (((is_plus_sign(maybe_exp.second) || is_hyphen_minus(maybe_exp.second)) && is_digit(maybe_exp.third)) | 
					
						
							|  |  |  |  |             || (is_digit(maybe_exp.second)))) { | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |         // 1. Consume them.
 | 
					
						
							|  |  |  |  |         // 2. Append them to repr.
 | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |         if (is_plus_sign(maybe_exp.second) || is_hyphen_minus(maybe_exp.second)) { | 
					
						
							| 
									
										
										
										
											2024-11-15 16:15:04 +11:00
										 |  |  |  |             if (is_digit(maybe_exp.third)) { | 
					
						
							| 
									
										
										
										
											2021-07-02 19:44:43 +01:00
										 |  |  |  |                 repr.append_code_point(next_code_point()); | 
					
						
							|  |  |  |  |                 repr.append_code_point(next_code_point()); | 
					
						
							|  |  |  |  |                 repr.append_code_point(next_code_point()); | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |             } | 
					
						
							| 
									
										
										
										
											2024-11-15 16:15:04 +11:00
										 |  |  |  |         } else if (is_digit(maybe_exp.second)) { | 
					
						
							| 
									
										
										
										
											2021-07-02 19:44:43 +01:00
										 |  |  |  |             repr.append_code_point(next_code_point()); | 
					
						
							|  |  |  |  |             repr.append_code_point(next_code_point()); | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |         } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |         // 3. Set type to "number".
 | 
					
						
							| 
									
										
										
										
											2022-03-21 21:01:27 +00:00
										 |  |  |  |         type = Number::Type::Number; | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |         // 4. While the next input code point is a digit, consume it and append it to repr.
 | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |         for (;;) { | 
					
						
							| 
									
										
										
										
											2021-07-02 19:44:43 +01:00
										 |  |  |  |             auto digits = peek_code_point(); | 
					
						
							| 
									
										
										
										
											2024-11-15 16:15:04 +11:00
										 |  |  |  |             if (!is_digit(digits)) | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |                 break; | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-07-02 19:44:43 +01:00
										 |  |  |  |             repr.append_code_point(next_code_point()); | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |         } | 
					
						
							|  |  |  |  |     } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |     // 6. Convert repr to a number, and set the value to the returned value.
 | 
					
						
							|  |  |  |  |     auto value = convert_a_string_to_a_number(repr.string_view()); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |     // 7. Return value and type.
 | 
					
						
							| 
									
										
										
										
											2022-03-21 21:01:27 +00:00
										 |  |  |  |     if (type == Number::Type::Integer && has_explicit_sign) | 
					
						
							|  |  |  |  |         return Number { Number::Type::IntegerWithExplicitSign, value }; | 
					
						
							|  |  |  |  |     return Number { type, value }; | 
					
						
							| 
									
										
										
										
											2021-11-17 21:01:51 +00:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | // https://www.w3.org/TR/css-syntax-3/#convert-string-to-number
 | 
					
						
							| 
									
										
										
										
											2023-08-20 13:07:43 +01:00
										 |  |  |  | double Tokenizer::convert_a_string_to_a_number(StringView string) | 
					
						
							| 
									
										
										
										
											2021-11-17 21:01:51 +00:00
										 |  |  |  | { | 
					
						
							| 
									
										
										
										
											2022-10-12 02:23:57 +02:00
										 |  |  |  |     // FIXME: We already found the whole part, fraction part and exponent during
 | 
					
						
							|  |  |  |  |     //        validation, we could probably skip
 | 
					
						
							| 
									
										
										
										
											2023-12-23 15:59:14 +13:00
										 |  |  |  |     return string.to_number<double>(AK::TrimWhitespace::No).release_value(); | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-21 16:49:12 +01:00
										 |  |  |  | // https://www.w3.org/TR/css-syntax-3/#consume-name
 | 
					
						
							| 
									
										
										
										
											2024-07-26 15:11:57 +01:00
										 |  |  |  | FlyString Tokenizer::consume_an_ident_sequence() | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  | { | 
					
						
							| 
									
										
										
										
											2022-10-03 16:05:07 +01:00
										 |  |  |  |     // This section describes how to consume an ident sequence from a stream of code points.
 | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |     // It returns a string containing the largest name that can be formed from adjacent
 | 
					
						
							|  |  |  |  |     // code points in the stream, starting from the first.
 | 
					
						
							|  |  |  |  |     //
 | 
					
						
							|  |  |  |  |     // Note: This algorithm does not do the verification of the first few code points that
 | 
					
						
							|  |  |  |  |     // are necessary to ensure the returned code points would constitute an <ident-token>.
 | 
					
						
							| 
									
										
										
										
											2022-10-03 16:05:07 +01:00
										 |  |  |  |     // If that is the intended use, ensure that the stream starts with an ident sequence before
 | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |     // calling this algorithm.
 | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |     // Let result initially be an empty string.
 | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |     StringBuilder result; | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |     // Repeatedly consume the next input code point from the stream:
 | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |     for (;;) { | 
					
						
							| 
									
										
										
										
											2021-07-02 19:44:43 +01:00
										 |  |  |  |         auto input = next_code_point(); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |         if (is_eof(input)) | 
					
						
							|  |  |  |  |             break; | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |         // name code point
 | 
					
						
							| 
									
										
										
										
											2022-10-03 16:05:07 +01:00
										 |  |  |  |         if (is_ident_code_point(input)) { | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |             // Append the code point to result.
 | 
					
						
							| 
									
										
										
										
											2024-07-26 15:11:57 +01:00
										 |  |  |  |             result.append_code_point(input); | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |             continue; | 
					
						
							|  |  |  |  |         } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |         // the stream starts with a valid escape
 | 
					
						
							| 
									
										
										
										
											2021-12-24 16:35:19 +00:00
										 |  |  |  |         if (is_valid_escape_sequence(start_of_input_stream_twin())) { | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |             // Consume an escaped code point. Append the returned code point to result.
 | 
					
						
							| 
									
										
										
										
											2024-07-26 15:11:57 +01:00
										 |  |  |  |             result.append_code_point(consume_escaped_code_point()); | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |             continue; | 
					
						
							|  |  |  |  |         } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |         // anything else
 | 
					
						
							|  |  |  |  |         // Reconsume the current input code point. Return result.
 | 
					
						
							| 
									
										
										
										
											2021-07-02 19:44:43 +01:00
										 |  |  |  |         reconsume_current_input_code_point(); | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |         break; | 
					
						
							|  |  |  |  |     } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-03-23 11:33:26 +01:00
										 |  |  |  |     return result.to_fly_string_without_validation(); | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  | } | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  | // https://www.w3.org/TR/css-syntax-3/#consume-url-token
 | 
					
						
							| 
									
										
										
										
											2024-07-26 15:11:57 +01:00
										 |  |  |  | Token Tokenizer::consume_a_url_token() | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  | { | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |     // This section describes how to consume a url token from a stream of code points.
 | 
					
						
							|  |  |  |  |     // It returns either a <url-token> or a <bad-url-token>.
 | 
					
						
							|  |  |  |  |     //
 | 
					
						
							|  |  |  |  |     // Note: This algorithm assumes that the initial "url(" has already been consumed.
 | 
					
						
							|  |  |  |  |     // This algorithm also assumes that it’s being called to consume an "unquoted" value,
 | 
					
						
							|  |  |  |  |     // like url(foo). A quoted value, like url("foo"), is parsed as a <function-token>.
 | 
					
						
							|  |  |  |  |     // Consume an ident-like token automatically handles this distinction; this algorithm
 | 
					
						
							|  |  |  |  |     // shouldn’t be called directly otherwise.
 | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |     // 1. Initially create a <url-token> with its value set to the empty string.
 | 
					
						
							| 
									
										
										
										
											2023-03-22 15:25:20 +00:00
										 |  |  |  |     auto start_byte_offset = current_byte_offset(); | 
					
						
							| 
									
										
										
										
											2021-11-18 12:30:46 +00:00
										 |  |  |  |     StringBuilder builder; | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |     // 2. Consume as much whitespace as possible.
 | 
					
						
							|  |  |  |  |     consume_as_much_whitespace_as_possible(); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |     // 3. Repeatedly consume the next input code point from the stream:
 | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |     for (;;) { | 
					
						
							| 
									
										
										
										
											2021-12-24 16:35:19 +00:00
										 |  |  |  |         auto input = next_code_point(); | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  |         // U+0029 RIGHT PARENTHESIS ())
 | 
					
						
							|  |  |  |  |         if (is_right_paren(input)) { | 
					
						
							|  |  |  |  |             // Return the <url-token>.
 | 
					
						
							| 
									
										
										
										
											2025-07-09 12:59:31 +01:00
										 |  |  |  |             return Token::create_url(builder.to_fly_string_without_validation(), input_since(start_byte_offset)); | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |         } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |         // EOF
 | 
					
						
							|  |  |  |  |         if (is_eof(input)) { | 
					
						
							|  |  |  |  |             // This is a parse error. Return the <url-token>.
 | 
					
						
							|  |  |  |  |             log_parse_error(); | 
					
						
							| 
									
										
										
										
											2025-07-09 12:59:31 +01:00
										 |  |  |  |             return Token::create_url(builder.to_fly_string_without_validation(), input_since(start_byte_offset)); | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |         } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |         // whitespace
 | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |         if (is_whitespace(input)) { | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |             // Consume as much whitespace as possible.
 | 
					
						
							| 
									
										
										
										
											2021-10-21 16:53:49 +01:00
										 |  |  |  |             consume_as_much_whitespace_as_possible(); | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  |             // If the next input code point is U+0029 RIGHT PARENTHESIS ()) or EOF, consume it
 | 
					
						
							|  |  |  |  |             // and return the <url-token> (if EOF was encountered, this is a parse error);
 | 
					
						
							| 
									
										
										
										
											2021-10-21 16:53:49 +01:00
										 |  |  |  |             input = peek_code_point(); | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |             if (is_right_paren(input)) { | 
					
						
							|  |  |  |  |                 (void)next_code_point(); | 
					
						
							| 
									
										
										
										
											2025-07-09 12:59:31 +01:00
										 |  |  |  |                 return Token::create_url(builder.to_fly_string_without_validation(), input_since(start_byte_offset)); | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |             } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |             if (is_eof(input)) { | 
					
						
							|  |  |  |  |                 (void)next_code_point(); | 
					
						
							|  |  |  |  |                 log_parse_error(); | 
					
						
							| 
									
										
										
										
											2025-07-09 12:59:31 +01:00
										 |  |  |  |                 return Token::create_url(builder.to_fly_string_without_validation(), input_since(start_byte_offset)); | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |             } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |             // otherwise, consume the remnants of a bad url, create a <bad-url-token>, and return it.
 | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |             consume_the_remnants_of_a_bad_url(); | 
					
						
							| 
									
										
										
										
											2025-07-09 12:59:31 +01:00
										 |  |  |  |             return Token::create(Token::Type::BadUrl, input_since(start_byte_offset)); | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |         } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |         // U+0022 QUOTATION MARK (")
 | 
					
						
							|  |  |  |  |         // U+0027 APOSTROPHE (')
 | 
					
						
							|  |  |  |  |         // U+0028 LEFT PARENTHESIS (()
 | 
					
						
							|  |  |  |  |         // non-printable code point
 | 
					
						
							| 
									
										
										
										
											2024-11-15 16:15:04 +11:00
										 |  |  |  |         if (is_quotation_mark(input) || is_apostrophe(input) || is_left_paren(input) || is_non_printable_code_point(input)) { | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |             // This is a parse error. Consume the remnants of a bad url, create a <bad-url-token>, and return it.
 | 
					
						
							| 
									
										
										
										
											2021-04-24 20:21:18 -07:00
										 |  |  |  |             log_parse_error(); | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |             consume_the_remnants_of_a_bad_url(); | 
					
						
							| 
									
										
										
										
											2025-07-09 12:59:31 +01:00
										 |  |  |  |             return Token::create(Token::Type::BadUrl, input_since(start_byte_offset)); | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |         } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |         // U+005C REVERSE SOLIDUS (\)
 | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |         if (is_reverse_solidus(input)) { | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |             // If the stream starts with a valid escape,
 | 
					
						
							| 
									
										
										
										
											2021-12-24 16:35:19 +00:00
										 |  |  |  |             if (is_valid_escape_sequence(start_of_input_stream_twin())) { | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |                 // consume an escaped code point and append the returned code point to the <url-token>’s value.
 | 
					
						
							| 
									
										
										
										
											2021-11-18 12:30:46 +00:00
										 |  |  |  |                 builder.append_code_point(consume_escaped_code_point()); | 
					
						
							| 
									
										
										
										
											2022-03-19 20:15:28 +01:00
										 |  |  |  |                 continue; | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |             } else { | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |                 // Otherwise, this is a parse error.
 | 
					
						
							| 
									
										
										
										
											2021-04-24 20:21:18 -07:00
										 |  |  |  |                 log_parse_error(); | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |                 // Consume the remnants of a bad url, create a <bad-url-token>, and return it.
 | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |                 consume_the_remnants_of_a_bad_url(); | 
					
						
							| 
									
										
										
										
											2025-07-09 12:59:31 +01:00
										 |  |  |  |                 return Token::create(Token::Type::BadUrl, input_since(start_byte_offset)); | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |             } | 
					
						
							|  |  |  |  |         } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |         // anything else
 | 
					
						
							|  |  |  |  |         // Append the current input code point to the <url-token>’s value.
 | 
					
						
							|  |  |  |  |         builder.append_code_point(input); | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |     } | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-21 16:49:12 +01:00
										 |  |  |  | // https://www.w3.org/TR/css-syntax-3/#consume-remnants-of-bad-url
 | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  | void Tokenizer::consume_the_remnants_of_a_bad_url() | 
					
						
							|  |  |  |  | { | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |     // This section describes how to consume the remnants of a bad url from a stream of code points,
 | 
					
						
							|  |  |  |  |     // "cleaning up" after the tokenizer realizes that it’s in the middle of a <bad-url-token> rather
 | 
					
						
							|  |  |  |  |     // than a <url-token>. It returns nothing; its sole use is to consume enough of the input stream
 | 
					
						
							|  |  |  |  |     // to reach a recovery point where normal tokenizing can resume.
 | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |     // Repeatedly consume the next input code point from the stream:
 | 
					
						
							|  |  |  |  |     for (;;) { | 
					
						
							| 
									
										
										
										
											2021-12-24 16:35:19 +00:00
										 |  |  |  |         auto input = next_code_point(); | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |         // U+0029 RIGHT PARENTHESIS ())
 | 
					
						
							|  |  |  |  |         // EOF
 | 
					
						
							|  |  |  |  |         if (is_eof(input) || is_right_paren(input)) { | 
					
						
							|  |  |  |  |             // Return.
 | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |             return; | 
					
						
							|  |  |  |  |         } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |         // the input stream starts with a valid escape
 | 
					
						
							| 
									
										
										
										
											2021-12-24 16:35:19 +00:00
										 |  |  |  |         if (is_valid_escape_sequence(start_of_input_stream_twin())) { | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |             // Consume an escaped code point.
 | 
					
						
							|  |  |  |  |             // This allows an escaped right parenthesis ("\)") to be encountered without ending
 | 
					
						
							|  |  |  |  |             // the <bad-url-token>. This is otherwise identical to the "anything else" clause.
 | 
					
						
							|  |  |  |  |             (void)consume_escaped_code_point(); | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |         } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |         // anything else
 | 
					
						
							|  |  |  |  |         // Do nothing.
 | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |     } | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-21 16:53:49 +01:00
										 |  |  |  | void Tokenizer::consume_as_much_whitespace_as_possible() | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  |     while (is_whitespace(peek_code_point())) { | 
					
						
							|  |  |  |  |         (void)next_code_point(); | 
					
						
							|  |  |  |  |     } | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-01 10:01:11 +02:00
										 |  |  |  | void Tokenizer::reconsume_current_input_code_point() | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  | { | 
					
						
							|  |  |  |  |     m_utf8_iterator = m_prev_utf8_iterator; | 
					
						
							| 
									
										
										
										
											2021-10-21 21:25:14 +01:00
										 |  |  |  |     m_position = m_prev_position; | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-21 16:49:12 +01:00
										 |  |  |  | // https://www.w3.org/TR/css-syntax-3/#consume-numeric-token
 | 
					
						
							| 
									
										
										
										
											2024-07-26 15:11:57 +01:00
										 |  |  |  | Token Tokenizer::consume_a_numeric_token() | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  | { | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |     // This section describes how to consume a numeric token from a stream of code points.
 | 
					
						
							|  |  |  |  |     // It returns either a <number-token>, <percentage-token>, or <dimension-token>.
 | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-03-22 15:25:20 +00:00
										 |  |  |  |     auto start_byte_offset = current_byte_offset(); | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |     // Consume a number and let number be the result.
 | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |     auto number = consume_a_number(); | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-10-03 16:05:07 +01:00
										 |  |  |  |     // If the next 3 input code points would start an ident sequence, then:
 | 
					
						
							|  |  |  |  |     if (would_start_an_ident_sequence(peek_triplet())) { | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |         // 1. Create a <dimension-token> with the same value and type flag as number,
 | 
					
						
							|  |  |  |  |         //    and a unit set initially to the empty string.
 | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-10-03 16:05:07 +01:00
										 |  |  |  |         // 2. Consume an ident sequence. Set the <dimension-token>’s unit to the returned value.
 | 
					
						
							| 
									
										
										
										
											2024-07-26 15:11:57 +01:00
										 |  |  |  |         auto unit = consume_an_ident_sequence(); | 
					
						
							| 
									
										
										
										
											2022-02-02 17:22:52 +00:00
										 |  |  |  |         VERIFY(!unit.is_empty()); | 
					
						
							| 
									
										
										
										
											2022-03-21 21:04:56 +00:00
										 |  |  |  |         // NOTE: We intentionally store this in the `value`, to save space.
 | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |         // 3. Return the <dimension-token>.
 | 
					
						
							| 
									
										
										
										
											2025-07-09 12:59:31 +01:00
										 |  |  |  |         return Token::create_dimension(number, move(unit), input_since(start_byte_offset)); | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |     } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |     // Otherwise, if the next input code point is U+0025 PERCENTAGE SIGN (%), consume it.
 | 
					
						
							| 
									
										
										
										
											2021-07-02 19:44:43 +01:00
										 |  |  |  |     if (is_percent(peek_code_point())) { | 
					
						
							| 
									
										
										
										
											2021-06-01 10:01:11 +02:00
										 |  |  |  |         (void)next_code_point(); | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |         // Create a <percentage-token> with the same value as number, and return it.
 | 
					
						
							| 
									
										
										
										
											2025-07-09 12:59:31 +01:00
										 |  |  |  |         return Token::create_percentage(number, input_since(start_byte_offset)); | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |     } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |     // Otherwise, create a <number-token> with the same value and type flag as number, and return it.
 | 
					
						
							| 
									
										
										
										
											2025-07-09 12:59:31 +01:00
										 |  |  |  |     return Token::create_number(number, input_since(start_byte_offset)); | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-21 16:49:12 +01:00
										 |  |  |  | // https://www.w3.org/TR/css-syntax-3/#starts-with-a-number
 | 
					
						
							|  |  |  |  | bool Tokenizer::would_start_a_number(U32Triplet values) | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  | { | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |     // This section describes how to check if three code points would start a number.
 | 
					
						
							|  |  |  |  |     // The algorithm described here can be called explicitly with three code points,
 | 
					
						
							|  |  |  |  |     // or can be called with the input stream itself. In the latter case, the three
 | 
					
						
							|  |  |  |  |     // code points in question are the current input code point and the next two input
 | 
					
						
							|  |  |  |  |     // code points, in that order.
 | 
					
						
							|  |  |  |  |     //
 | 
					
						
							|  |  |  |  |     // Note: This algorithm will not consume any additional code points.
 | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |     // Look at the first code point:
 | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |     // U+002B PLUS SIGN (+)
 | 
					
						
							|  |  |  |  |     // U+002D HYPHEN-MINUS (-)
 | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |     if (is_plus_sign(values.first) || is_hyphen_minus(values.first)) { | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |         // If the second code point is a digit, return true.
 | 
					
						
							| 
									
										
										
										
											2024-11-15 16:15:04 +11:00
										 |  |  |  |         if (is_digit(values.second)) | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |             return true; | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |         // Otherwise, if the second code point is a U+002E FULL STOP (.) and the third
 | 
					
						
							|  |  |  |  |         // code point is a digit, return true.
 | 
					
						
							| 
									
										
										
										
											2024-11-15 16:15:04 +11:00
										 |  |  |  |         if (is_full_stop(values.second) && is_digit(values.third)) | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |             return true; | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |         // Otherwise, return false.
 | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |         return false; | 
					
						
							|  |  |  |  |     } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |     // U+002E FULL STOP (.)
 | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |     if (is_full_stop(values.first)) | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |         // If the second code point is a digit, return true. Otherwise, return false.
 | 
					
						
							| 
									
										
										
										
											2024-11-15 16:15:04 +11:00
										 |  |  |  |         return is_digit(values.second); | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |     // digit
 | 
					
						
							| 
									
										
										
										
											2024-11-15 16:15:04 +11:00
										 |  |  |  |     if (is_digit(values.first)) | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |         // Return true.
 | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |         return true; | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |     // anything else
 | 
					
						
							|  |  |  |  |     // Return false.
 | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |     return false; | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-21 16:49:12 +01:00
										 |  |  |  | // https://www.w3.org/TR/css-syntax-3/#starts-with-a-valid-escape
 | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  | bool Tokenizer::is_valid_escape_sequence(U32Twin values) | 
					
						
							|  |  |  |  | { | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |     // This section describes how to check if two code points are a valid escape.
 | 
					
						
							|  |  |  |  |     // The algorithm described here can be called explicitly with two code points,
 | 
					
						
							|  |  |  |  |     // or can be called with the input stream itself. In the latter case, the two
 | 
					
						
							|  |  |  |  |     // code points in question are the current input code point and the next input
 | 
					
						
							|  |  |  |  |     // code point, in that order.
 | 
					
						
							|  |  |  |  |     //
 | 
					
						
							|  |  |  |  |     // Note: This algorithm will not consume any additional code point.
 | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |     // If the first code point is not U+005C REVERSE SOLIDUS (\), return false.
 | 
					
						
							|  |  |  |  |     if (!is_reverse_solidus(values.first)) | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |         return false; | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |     // Otherwise, if the second code point is a newline, return false.
 | 
					
						
							|  |  |  |  |     if (is_newline(values.second)) | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |         return false; | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |     // Otherwise, return true.
 | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |     return true; | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-21 16:49:12 +01:00
										 |  |  |  | // https://www.w3.org/TR/css-syntax-3/#would-start-an-identifier
 | 
					
						
							| 
									
										
										
										
											2022-10-03 16:05:07 +01:00
										 |  |  |  | bool Tokenizer::would_start_an_ident_sequence(U32Triplet values) | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  | { | 
					
						
							| 
									
										
										
										
											2022-10-03 16:05:07 +01:00
										 |  |  |  |     // This section describes how to check if three code points would start an ident sequence.
 | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |     // The algorithm described here can be called explicitly with three code points, or
 | 
					
						
							|  |  |  |  |     // can be called with the input stream itself. In the latter case, the three code
 | 
					
						
							|  |  |  |  |     // points in question are the current input code point and the next two input code
 | 
					
						
							|  |  |  |  |     // points, in that order.
 | 
					
						
							|  |  |  |  |     //
 | 
					
						
							|  |  |  |  |     // Note: This algorithm will not consume any additional code points.
 | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |     // Look at the first code point:
 | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |     // U+002D HYPHEN-MINUS
 | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |     if (is_hyphen_minus(values.first)) { | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |         // If the second code point is a name-start code point or a U+002D HYPHEN-MINUS,
 | 
					
						
							|  |  |  |  |         // or the second and third code points are a valid escape, return true.
 | 
					
						
							| 
									
										
										
										
											2022-10-03 16:05:07 +01:00
										 |  |  |  |         if (is_ident_start_code_point(values.second) || is_hyphen_minus(values.second) || is_valid_escape_sequence(values.to_twin_23())) | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |             return true; | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |         // Otherwise, return false.
 | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |         return false; | 
					
						
							|  |  |  |  |     } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |     // name-start code point
 | 
					
						
							| 
									
										
										
										
											2022-10-03 16:05:07 +01:00
										 |  |  |  |     if (is_ident_start_code_point(values.first)) { | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |         // Return true.
 | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |         return true; | 
					
						
							|  |  |  |  |     } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |     // U+005C REVERSE SOLIDUS (\)
 | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |     if (is_reverse_solidus(values.first)) { | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |         // If the first and second code points are a valid escape, return true.
 | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |         if (is_valid_escape_sequence(values.to_twin_12())) | 
					
						
							|  |  |  |  |             return true; | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |         // Otherwise, return false.
 | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |         return false; | 
					
						
							|  |  |  |  |     } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |     // anything else
 | 
					
						
							|  |  |  |  |     // Return false.
 | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |     return false; | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-21 16:49:12 +01:00
										 |  |  |  | // https://www.w3.org/TR/css-syntax-3/#consume-string-token
 | 
					
						
							| 
									
										
										
										
											2024-07-26 15:11:57 +01:00
										 |  |  |  | Token Tokenizer::consume_string_token(u32 ending_code_point) | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  | { | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |     // This section describes how to consume a string token from a stream of code points.
 | 
					
						
							|  |  |  |  |     // It returns either a <string-token> or <bad-string-token>.
 | 
					
						
							|  |  |  |  |     //
 | 
					
						
							|  |  |  |  |     // This algorithm may be called with an ending code point, which denotes the code point
 | 
					
						
							|  |  |  |  |     // that ends the string. If an ending code point is not specified, the current input
 | 
					
						
							|  |  |  |  |     // code point is used.
 | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |     // Initially create a <string-token> with its value set to the empty string.
 | 
					
						
							| 
									
										
										
										
											2025-02-05 13:49:19 +00:00
										 |  |  |  |     auto original_source_text_start_byte_offset_including_quotation_mark = current_byte_offset() - 1; | 
					
						
							| 
									
										
										
										
											2021-11-18 12:30:46 +00:00
										 |  |  |  |     StringBuilder builder; | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |     // Repeatedly consume the next input code point from the stream:
 | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |     for (;;) { | 
					
						
							| 
									
										
										
										
											2021-07-02 19:44:43 +01:00
										 |  |  |  |         auto input = next_code_point(); | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |         // ending code point
 | 
					
						
							|  |  |  |  |         if (input == ending_code_point) | 
					
						
							| 
									
										
										
										
											2025-07-09 12:59:31 +01:00
										 |  |  |  |             return Token::create_string(builder.to_fly_string_without_validation(), input_since(original_source_text_start_byte_offset_including_quotation_mark)); | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  |         // EOF
 | 
					
						
							| 
									
										
										
										
											2021-07-02 19:44:43 +01:00
										 |  |  |  |         if (is_eof(input)) { | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |             // This is a parse error. Return the <string-token>.
 | 
					
						
							| 
									
										
										
										
											2021-04-24 20:21:18 -07:00
										 |  |  |  |             log_parse_error(); | 
					
						
							| 
									
										
										
										
											2025-07-09 12:59:31 +01:00
										 |  |  |  |             return Token::create_string(builder.to_fly_string_without_validation(), input_since(original_source_text_start_byte_offset_including_quotation_mark)); | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |         } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |         // newline
 | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |         if (is_newline(input)) { | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |             // This is a parse error. Reconsume the current input code point, create a
 | 
					
						
							|  |  |  |  |             // <bad-string-token>, and return it.
 | 
					
						
							| 
									
										
										
										
											2021-06-01 10:01:11 +02:00
										 |  |  |  |             reconsume_current_input_code_point(); | 
					
						
							| 
									
										
										
										
											2025-07-09 12:59:31 +01:00
										 |  |  |  |             return Token::create(Token::Type::BadString, input_since(original_source_text_start_byte_offset_including_quotation_mark)); | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |         } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |         // U+005C REVERSE SOLIDUS (\)
 | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |         if (is_reverse_solidus(input)) { | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |             // If the next input code point is EOF, do nothing.
 | 
					
						
							| 
									
										
										
										
											2021-06-01 10:01:11 +02:00
										 |  |  |  |             auto next_input = peek_code_point(); | 
					
						
							| 
									
										
										
										
											2021-07-02 19:44:43 +01:00
										 |  |  |  |             if (is_eof(next_input)) | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |                 continue; | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |             // Otherwise, if the next input code point is a newline, consume it.
 | 
					
						
							| 
									
										
										
										
											2021-07-02 19:44:43 +01:00
										 |  |  |  |             if (is_newline(next_input)) { | 
					
						
							| 
									
										
										
										
											2021-06-01 10:01:11 +02:00
										 |  |  |  |                 (void)next_code_point(); | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |                 continue; | 
					
						
							|  |  |  |  |             } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |             // Otherwise, (the stream starts with a valid escape) consume an escaped code
 | 
					
						
							|  |  |  |  |             // point and append the returned code point to the <string-token>’s value.
 | 
					
						
							| 
									
										
										
										
											2021-06-01 10:01:11 +02:00
										 |  |  |  |             auto escaped = consume_escaped_code_point(); | 
					
						
							| 
									
										
										
										
											2021-11-18 12:30:46 +00:00
										 |  |  |  |             builder.append_code_point(escaped); | 
					
						
							| 
									
										
										
										
											2022-03-19 20:15:28 +01:00
										 |  |  |  |             continue; | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |         } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |         // anything else
 | 
					
						
							|  |  |  |  |         // Append the current input code point to the <string-token>’s value.
 | 
					
						
							| 
									
										
										
										
											2021-11-18 12:30:46 +00:00
										 |  |  |  |         builder.append_code_point(input); | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |     } | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-21 16:49:12 +01:00
										 |  |  |  | // https://www.w3.org/TR/css-syntax-3/#consume-comment
 | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  | void Tokenizer::consume_comments() | 
					
						
							|  |  |  |  | { | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |     // This section describes how to consume comments from a stream of code points.
 | 
					
						
							|  |  |  |  |     // It returns nothing.
 | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  | start: | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |     // If the next two input code point are U+002F SOLIDUS (/) followed by a U+002A ASTERISK (*),
 | 
					
						
							|  |  |  |  |     // consume them and all following code points up to and including the first U+002A ASTERISK (*)
 | 
					
						
							|  |  |  |  |     // followed by a U+002F SOLIDUS (/), or up to an EOF code point. Return to the start of this step.
 | 
					
						
							|  |  |  |  |     //
 | 
					
						
							|  |  |  |  |     // If the preceding paragraph ended by consuming an EOF code point, this is a parse error.
 | 
					
						
							|  |  |  |  |     //
 | 
					
						
							|  |  |  |  |     // Return nothing.
 | 
					
						
							| 
									
										
										
										
											2021-07-02 19:44:43 +01:00
										 |  |  |  |     auto twin = peek_twin(); | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |     if (!(is_solidus(twin.first) && is_asterisk(twin.second))) | 
					
						
							|  |  |  |  |         return; | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-01 10:01:11 +02:00
										 |  |  |  |     (void)next_code_point(); | 
					
						
							|  |  |  |  |     (void)next_code_point(); | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  |     for (;;) { | 
					
						
							| 
									
										
										
										
											2021-07-02 19:44:43 +01:00
										 |  |  |  |         auto twin_inner = peek_twin(); | 
					
						
							|  |  |  |  |         if (is_eof(twin_inner.first) || is_eof(twin_inner.second)) { | 
					
						
							| 
									
										
										
										
											2021-04-24 20:21:18 -07:00
										 |  |  |  |             log_parse_error(); | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |             return; | 
					
						
							|  |  |  |  |         } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |         if (is_asterisk(twin_inner.first) && is_solidus(twin_inner.second)) { | 
					
						
							| 
									
										
										
										
											2021-06-01 10:01:11 +02:00
										 |  |  |  |             (void)next_code_point(); | 
					
						
							|  |  |  |  |             (void)next_code_point(); | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |             goto start; | 
					
						
							|  |  |  |  |         } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-01 10:01:11 +02:00
										 |  |  |  |         (void)next_code_point(); | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |     } | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-21 16:49:12 +01:00
										 |  |  |  | // https://www.w3.org/TR/css-syntax-3/#consume-token
 | 
					
						
							| 
									
										
										
										
											2024-07-26 15:11:57 +01:00
										 |  |  |  | Token Tokenizer::consume_a_token() | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  | { | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |     // This section describes how to consume a token from a stream of code points.
 | 
					
						
							|  |  |  |  |     // It will return a single token of any type.
 | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-10-14 16:18:57 +01:00
										 |  |  |  |     auto start_byte_offset = current_byte_offset(); | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |     // Consume comments.
 | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |     consume_comments(); | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-10-14 16:18:57 +01:00
										 |  |  |  |     // AD-HOC: Preserve comments as whitespace tokens, for serializing custom properties.
 | 
					
						
							|  |  |  |  |     auto after_comments_byte_offset = current_byte_offset(); | 
					
						
							| 
									
										
										
										
											2025-07-09 12:59:31 +01:00
										 |  |  |  |     if (after_comments_byte_offset != start_byte_offset) | 
					
						
							|  |  |  |  |         return Token::create_whitespace(input_since(start_byte_offset)); | 
					
						
							| 
									
										
										
										
											2024-10-14 16:18:57 +01:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |     // Consume the next input code point.
 | 
					
						
							| 
									
										
										
										
											2021-07-02 19:44:43 +01:00
										 |  |  |  |     auto input = next_code_point(); | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |     // whitespace
 | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |     if (is_whitespace(input)) { | 
					
						
							| 
									
										
										
										
											2021-07-23 13:06:31 +01:00
										 |  |  |  |         dbgln_if(CSS_TOKENIZER_DEBUG, "is whitespace"); | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |         // Consume as much whitespace as possible. Return a <whitespace-token>.
 | 
					
						
							| 
									
										
										
										
											2021-10-21 16:53:49 +01:00
										 |  |  |  |         consume_as_much_whitespace_as_possible(); | 
					
						
							| 
									
										
										
										
											2025-07-09 12:59:31 +01:00
										 |  |  |  |         return Token::create_whitespace(input_since(start_byte_offset)); | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |     } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |     // U+0022 QUOTATION MARK (")
 | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |     if (is_quotation_mark(input)) { | 
					
						
							| 
									
										
										
										
											2021-07-23 13:06:31 +01:00
										 |  |  |  |         dbgln_if(CSS_TOKENIZER_DEBUG, "is quotation mark"); | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |         // Consume a string token and return it.
 | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |         return consume_string_token(input); | 
					
						
							|  |  |  |  |     } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |     // U+0023 NUMBER SIGN (#)
 | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |     if (is_number_sign(input)) { | 
					
						
							| 
									
										
										
										
											2021-07-23 13:06:31 +01:00
										 |  |  |  |         dbgln_if(CSS_TOKENIZER_DEBUG, "is number sign"); | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-10-03 16:05:07 +01:00
										 |  |  |  |         // If the next input code point is an ident code point or the next two input code points
 | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |         // are a valid escape, then:
 | 
					
						
							| 
									
										
										
										
											2021-07-02 19:44:43 +01:00
										 |  |  |  |         auto next_input = peek_code_point(); | 
					
						
							|  |  |  |  |         auto maybe_escape = peek_twin(); | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-10-03 16:05:07 +01:00
										 |  |  |  |         if (is_ident_code_point(next_input) || is_valid_escape_sequence(maybe_escape)) { | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |             // 1. Create a <hash-token>.
 | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-10-03 16:05:07 +01:00
										 |  |  |  |             // 2. If the next 3 input code points would start an ident sequence, set the <hash-token>’s
 | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |             //    type flag to "id".
 | 
					
						
							| 
									
										
										
										
											2025-07-09 12:59:31 +01:00
										 |  |  |  |             auto hash_type = Token::HashType::Unrestricted; | 
					
						
							| 
									
										
										
										
											2022-10-03 16:05:07 +01:00
										 |  |  |  |             if (would_start_an_ident_sequence(peek_triplet())) | 
					
						
							| 
									
										
										
										
											2025-07-09 12:59:31 +01:00
										 |  |  |  |                 hash_type = Token::HashType::Id; | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-10-03 16:05:07 +01:00
										 |  |  |  |             // 3. Consume an ident sequence, and set the <hash-token>’s value to the returned string.
 | 
					
						
							| 
									
										
										
										
											2025-07-09 12:59:31 +01:00
										 |  |  |  |             auto value = consume_an_ident_sequence(); | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |             // 4. Return the <hash-token>.
 | 
					
						
							| 
									
										
										
										
											2025-07-09 12:59:31 +01:00
										 |  |  |  |             return Token::create_hash(move(value), hash_type, input_since(start_byte_offset)); | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |         } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |         // Otherwise, return a <delim-token> with its value set to the current input code point.
 | 
					
						
							| 
									
										
										
										
											2025-07-09 12:59:31 +01:00
										 |  |  |  |         return Token::create_delim(input, input_since(start_byte_offset)); | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |     } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |     // U+0027 APOSTROPHE (')
 | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |     if (is_apostrophe(input)) { | 
					
						
							| 
									
										
										
										
											2021-07-23 13:06:31 +01:00
										 |  |  |  |         dbgln_if(CSS_TOKENIZER_DEBUG, "is apostrophe"); | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |         // Consume a string token and return it.
 | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |         return consume_string_token(input); | 
					
						
							|  |  |  |  |     } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |     // U+0028 LEFT PARENTHESIS (()
 | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |     if (is_left_paren(input)) { | 
					
						
							| 
									
										
										
										
											2021-07-23 13:06:31 +01:00
										 |  |  |  |         dbgln_if(CSS_TOKENIZER_DEBUG, "is left paren"); | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |         // Return a <(-token>.
 | 
					
						
							| 
									
										
										
										
											2025-07-09 12:59:31 +01:00
										 |  |  |  |         return Token::create(Token::Type::OpenParen, input_since(start_byte_offset)); | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |     } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |     // U+0029 RIGHT PARENTHESIS ())
 | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |     if (is_right_paren(input)) { | 
					
						
							| 
									
										
										
										
											2021-07-23 13:06:31 +01:00
										 |  |  |  |         dbgln_if(CSS_TOKENIZER_DEBUG, "is right paren"); | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |         // Return a <)-token>.
 | 
					
						
							| 
									
										
										
										
											2025-07-09 12:59:31 +01:00
										 |  |  |  |         return Token::create(Token::Type::CloseParen, input_since(start_byte_offset)); | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |     } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |     // U+002B PLUS SIGN (+)
 | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |     if (is_plus_sign(input)) { | 
					
						
							| 
									
										
										
										
											2021-07-23 13:06:31 +01:00
										 |  |  |  |         dbgln_if(CSS_TOKENIZER_DEBUG, "is plus sign"); | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |         // If the input stream starts with a number, reconsume the current input code point,
 | 
					
						
							|  |  |  |  |         // consume a numeric token and return it.
 | 
					
						
							| 
									
										
										
										
											2021-12-24 16:16:55 +00:00
										 |  |  |  |         if (would_start_a_number(start_of_input_stream_triplet())) { | 
					
						
							| 
									
										
										
										
											2021-06-01 10:01:11 +02:00
										 |  |  |  |             reconsume_current_input_code_point(); | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |             return consume_a_numeric_token(); | 
					
						
							|  |  |  |  |         } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |         // Otherwise, return a <delim-token> with its value set to the current input code point.
 | 
					
						
							| 
									
										
										
										
											2025-07-09 12:59:31 +01:00
										 |  |  |  |         return Token::create_delim(input, input_since(start_byte_offset)); | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |     } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |     // U+002C COMMA (,)
 | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |     if (is_comma(input)) { | 
					
						
							| 
									
										
										
										
											2021-07-23 13:06:31 +01:00
										 |  |  |  |         dbgln_if(CSS_TOKENIZER_DEBUG, "is comma"); | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |         // Return a <comma-token>.
 | 
					
						
							| 
									
										
										
										
											2025-07-09 12:59:31 +01:00
										 |  |  |  |         return Token::create(Token::Type::Comma, input_since(start_byte_offset)); | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |     } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |     // U+002D HYPHEN-MINUS (-)
 | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |     if (is_hyphen_minus(input)) { | 
					
						
							| 
									
										
										
										
											2021-07-23 13:06:31 +01:00
										 |  |  |  |         dbgln_if(CSS_TOKENIZER_DEBUG, "is hyphen minus"); | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |         // If the input stream starts with a number, reconsume the current input code point,
 | 
					
						
							|  |  |  |  |         // consume a numeric token, and return it.
 | 
					
						
							| 
									
										
										
										
											2021-12-24 16:16:55 +00:00
										 |  |  |  |         if (would_start_a_number(start_of_input_stream_triplet())) { | 
					
						
							| 
									
										
										
										
											2021-06-01 10:01:11 +02:00
										 |  |  |  |             reconsume_current_input_code_point(); | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |             return consume_a_numeric_token(); | 
					
						
							|  |  |  |  |         } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |         // Otherwise, if the next 2 input code points are U+002D HYPHEN-MINUS U+003E
 | 
					
						
							|  |  |  |  |         // GREATER-THAN SIGN (->), consume them and return a <CDC-token>.
 | 
					
						
							| 
									
										
										
										
											2021-07-02 19:44:43 +01:00
										 |  |  |  |         auto next_twin = peek_twin(); | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |         if (is_hyphen_minus(next_twin.first) && is_greater_than_sign(next_twin.second)) { | 
					
						
							| 
									
										
										
										
											2021-06-01 10:01:11 +02:00
										 |  |  |  |             (void)next_code_point(); | 
					
						
							|  |  |  |  |             (void)next_code_point(); | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-07-09 12:59:31 +01:00
										 |  |  |  |             return Token::create(Token::Type::CDC, input_since(start_byte_offset)); | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |         } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |         // Otherwise, if the input stream starts with an identifier, reconsume the current
 | 
					
						
							|  |  |  |  |         // input code point, consume an ident-like token, and return it.
 | 
					
						
							| 
									
										
										
										
											2022-10-03 16:05:07 +01:00
										 |  |  |  |         if (would_start_an_ident_sequence(start_of_input_stream_triplet())) { | 
					
						
							| 
									
										
										
										
											2021-06-01 10:01:11 +02:00
										 |  |  |  |             reconsume_current_input_code_point(); | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |             return consume_an_ident_like_token(); | 
					
						
							|  |  |  |  |         } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |         // Otherwise, return a <delim-token> with its value set to the current input code point.
 | 
					
						
							| 
									
										
										
										
											2025-07-09 12:59:31 +01:00
										 |  |  |  |         return Token::create_delim(input, input_since(start_byte_offset)); | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |     } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |     // U+002E FULL STOP (.)
 | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |     if (is_full_stop(input)) { | 
					
						
							| 
									
										
										
										
											2021-07-23 13:06:31 +01:00
										 |  |  |  |         dbgln_if(CSS_TOKENIZER_DEBUG, "is full stop"); | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |         // If the input stream starts with a number, reconsume the current input code point,
 | 
					
						
							|  |  |  |  |         // consume a numeric token, and return it.
 | 
					
						
							| 
									
										
										
										
											2021-12-24 16:16:55 +00:00
										 |  |  |  |         if (would_start_a_number(start_of_input_stream_triplet())) { | 
					
						
							| 
									
										
										
										
											2021-06-01 10:01:11 +02:00
										 |  |  |  |             reconsume_current_input_code_point(); | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |             return consume_a_numeric_token(); | 
					
						
							|  |  |  |  |         } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |         // Otherwise, return a <delim-token> with its value set to the current input code point.
 | 
					
						
							| 
									
										
										
										
											2025-07-09 12:59:31 +01:00
										 |  |  |  |         return Token::create_delim(input, input_since(start_byte_offset)); | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |     } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |     // U+003A COLON (:)
 | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |     if (is_colon(input)) { | 
					
						
							| 
									
										
										
										
											2021-07-23 13:06:31 +01:00
										 |  |  |  |         dbgln_if(CSS_TOKENIZER_DEBUG, "is colon"); | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |         // Return a <colon-token>.
 | 
					
						
							| 
									
										
										
										
											2025-07-09 12:59:31 +01:00
										 |  |  |  |         return Token::create(Token::Type::Colon, input_since(start_byte_offset)); | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |     } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |     // U+003B SEMICOLON (;)
 | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |     if (is_semicolon(input)) { | 
					
						
							| 
									
										
										
										
											2021-07-23 13:06:31 +01:00
										 |  |  |  |         dbgln_if(CSS_TOKENIZER_DEBUG, "is semicolon"); | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |         // Return a <semicolon-token>.
 | 
					
						
							| 
									
										
										
										
											2025-07-09 12:59:31 +01:00
										 |  |  |  |         return Token::create(Token::Type::Semicolon, input_since(start_byte_offset)); | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |     } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |     // U+003C LESS-THAN SIGN (<)
 | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |     if (is_less_than_sign(input)) { | 
					
						
							| 
									
										
										
										
											2021-07-23 13:06:31 +01:00
										 |  |  |  |         dbgln_if(CSS_TOKENIZER_DEBUG, "is less than"); | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |         // If the next 3 input code points are U+0021 EXCLAMATION MARK U+002D HYPHEN-MINUS
 | 
					
						
							|  |  |  |  |         // U+002D HYPHEN-MINUS (!--), consume them and return a <CDO-token>.
 | 
					
						
							| 
									
										
										
										
											2021-07-02 19:44:43 +01:00
										 |  |  |  |         auto maybe_cdo = peek_triplet(); | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |         if (is_exclamation_mark(maybe_cdo.first) && is_hyphen_minus(maybe_cdo.second) && is_hyphen_minus(maybe_cdo.third)) { | 
					
						
							| 
									
										
										
										
											2021-06-01 10:01:11 +02:00
										 |  |  |  |             (void)next_code_point(); | 
					
						
							|  |  |  |  |             (void)next_code_point(); | 
					
						
							|  |  |  |  |             (void)next_code_point(); | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-07-09 12:59:31 +01:00
										 |  |  |  |             return Token::create(Token::Type::CDO, input_since(start_byte_offset)); | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |         } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |         // Otherwise, return a <delim-token> with its value set to the current input code point.
 | 
					
						
							| 
									
										
										
										
											2025-07-09 12:59:31 +01:00
										 |  |  |  |         return Token::create_delim(input, input_since(start_byte_offset)); | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |     } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |     // U+0040 COMMERCIAL AT (@)
 | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |     if (is_at(input)) { | 
					
						
							| 
									
										
										
										
											2021-07-23 13:06:31 +01:00
										 |  |  |  |         dbgln_if(CSS_TOKENIZER_DEBUG, "is at"); | 
					
						
							| 
									
										
										
										
											2022-10-03 16:05:07 +01:00
										 |  |  |  |         // If the next 3 input code points would start an ident sequence, consume an ident sequence, create
 | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |         // an <at-keyword-token> with its value set to the returned value, and return it.
 | 
					
						
							| 
									
										
										
										
											2025-07-09 13:44:28 +01:00
										 |  |  |  |         if (would_start_an_ident_sequence(peek_triplet())) | 
					
						
							|  |  |  |  |             return Token::create_at_keyword(consume_an_ident_sequence(), input_since(start_byte_offset)); | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |         // Otherwise, return a <delim-token> with its value set to the current input code point.
 | 
					
						
							| 
									
										
										
										
											2025-07-09 12:59:31 +01:00
										 |  |  |  |         return Token::create_delim(input, input_since(start_byte_offset)); | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |     } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |     // U+005B LEFT SQUARE BRACKET ([)
 | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |     if (is_open_square_bracket(input)) { | 
					
						
							| 
									
										
										
										
											2021-07-23 13:06:31 +01:00
										 |  |  |  |         dbgln_if(CSS_TOKENIZER_DEBUG, "is open square"); | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |         // Return a <[-token>.
 | 
					
						
							| 
									
										
										
										
											2025-07-09 12:59:31 +01:00
										 |  |  |  |         return Token::create(Token::Type::OpenSquare, input_since(start_byte_offset)); | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |     } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |     // U+005C REVERSE SOLIDUS (\)
 | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |     if (is_reverse_solidus(input)) { | 
					
						
							| 
									
										
										
										
											2021-07-23 13:06:31 +01:00
										 |  |  |  |         dbgln_if(CSS_TOKENIZER_DEBUG, "is reverse solidus"); | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |         // If the input stream starts with a valid escape, reconsume the current input code point,
 | 
					
						
							|  |  |  |  |         // consume an ident-like token, and return it.
 | 
					
						
							| 
									
										
										
										
											2021-12-24 16:35:19 +00:00
										 |  |  |  |         if (is_valid_escape_sequence(start_of_input_stream_twin())) { | 
					
						
							| 
									
										
										
										
											2021-06-01 10:01:11 +02:00
										 |  |  |  |             reconsume_current_input_code_point(); | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |             return consume_an_ident_like_token(); | 
					
						
							|  |  |  |  |         } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |         // Otherwise, this is a parse error. Return a <delim-token> with its value set to the
 | 
					
						
							|  |  |  |  |         // current input code point.
 | 
					
						
							| 
									
										
										
										
											2021-04-24 20:21:18 -07:00
										 |  |  |  |         log_parse_error(); | 
					
						
							| 
									
										
										
										
											2025-07-09 12:59:31 +01:00
										 |  |  |  |         return Token::create_delim(input, input_since(start_byte_offset)); | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |     } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |     // U+005D RIGHT SQUARE BRACKET (])
 | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |     if (is_closed_square_bracket(input)) { | 
					
						
							| 
									
										
										
										
											2021-07-23 13:06:31 +01:00
										 |  |  |  |         dbgln_if(CSS_TOKENIZER_DEBUG, "is closed square"); | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |         // Return a <]-token>.
 | 
					
						
							| 
									
										
										
										
											2025-07-09 12:59:31 +01:00
										 |  |  |  |         return Token::create(Token::Type::CloseSquare, input_since(start_byte_offset)); | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |     } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |     // U+007B LEFT CURLY BRACKET ({)
 | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |     if (is_open_curly_bracket(input)) { | 
					
						
							| 
									
										
										
										
											2021-07-23 13:06:31 +01:00
										 |  |  |  |         dbgln_if(CSS_TOKENIZER_DEBUG, "is open curly"); | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |         // Return a <{-token>.
 | 
					
						
							| 
									
										
										
										
											2025-07-09 12:59:31 +01:00
										 |  |  |  |         return Token::create(Token::Type::OpenCurly, input_since(start_byte_offset)); | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |     } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |     // U+007D RIGHT CURLY BRACKET (})
 | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |     if (is_closed_curly_bracket(input)) { | 
					
						
							| 
									
										
										
										
											2021-07-23 13:06:31 +01:00
										 |  |  |  |         dbgln_if(CSS_TOKENIZER_DEBUG, "is closed curly"); | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |         // Return a <}-token>.
 | 
					
						
							| 
									
										
										
										
											2025-07-09 12:59:31 +01:00
										 |  |  |  |         return Token::create(Token::Type::CloseCurly, input_since(start_byte_offset)); | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |     } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |     // digit
 | 
					
						
							| 
									
										
										
										
											2024-11-15 16:15:04 +11:00
										 |  |  |  |     if (is_digit(input)) { | 
					
						
							| 
									
										
										
										
											2021-07-23 13:06:31 +01:00
										 |  |  |  |         dbgln_if(CSS_TOKENIZER_DEBUG, "is digit"); | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |         // Reconsume the current input code point, consume a numeric token, and return it.
 | 
					
						
							| 
									
										
										
										
											2021-06-01 10:01:11 +02:00
										 |  |  |  |         reconsume_current_input_code_point(); | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |         return consume_a_numeric_token(); | 
					
						
							|  |  |  |  |     } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |     // name-start code point
 | 
					
						
							| 
									
										
										
										
											2022-10-03 16:05:07 +01:00
										 |  |  |  |     if (is_ident_start_code_point(input)) { | 
					
						
							| 
									
										
										
										
											2021-07-23 13:06:31 +01:00
										 |  |  |  |         dbgln_if(CSS_TOKENIZER_DEBUG, "is name start"); | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |         // Reconsume the current input code point, consume an ident-like token, and return it.
 | 
					
						
							| 
									
										
										
										
											2021-06-01 10:01:11 +02:00
										 |  |  |  |         reconsume_current_input_code_point(); | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  |         return consume_an_ident_like_token(); | 
					
						
							|  |  |  |  |     } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |     // EOF
 | 
					
						
							|  |  |  |  |     if (is_eof(input)) { | 
					
						
							|  |  |  |  |         // Return an <EOF-token>.
 | 
					
						
							| 
									
										
										
										
											2023-03-22 15:25:20 +00:00
										 |  |  |  |         return create_eof_token(); | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |     } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |     // anything else
 | 
					
						
							| 
									
										
										
										
											2021-07-23 13:06:31 +01:00
										 |  |  |  |     dbgln_if(CSS_TOKENIZER_DEBUG, "is delimiter"); | 
					
						
							| 
									
										
										
										
											2021-10-28 12:50:05 +01:00
										 |  |  |  |     // Return a <delim-token> with its value set to the current input code point.
 | 
					
						
							| 
									
										
										
										
											2025-07-09 12:59:31 +01:00
										 |  |  |  |     return Token::create_delim(input, input_since(start_byte_offset)); | 
					
						
							| 
									
										
										
										
											2023-03-22 15:25:20 +00:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | size_t Tokenizer::current_byte_offset() const | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  |     return m_utf8_iterator.ptr() - m_utf8_view.bytes(); | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-07-26 15:11:57 +01:00
										 |  |  |  | String Tokenizer::input_since(size_t offset) const | 
					
						
							| 
									
										
										
										
											2023-03-22 15:25:20 +00:00
										 |  |  |  | { | 
					
						
							| 
									
										
										
										
											2024-07-26 15:11:57 +01:00
										 |  |  |  |     return MUST(m_decoded_input.substring_from_byte_offset_with_shared_superstring(offset, current_byte_offset() - offset)); | 
					
						
							| 
									
										
										
										
											2021-03-09 17:18:08 +01:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | } |