| 
									
										
										
										
											2021-03-09 17:36:21 +01:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2021-04-28 22:46:44 +02:00
										 |  |  |  * Copyright (c) 2020-2021, the SerenityOS developers. | 
					
						
							| 
									
										
										
										
											2023-02-15 11:28:44 +00:00
										 |  |  |  * Copyright (c) 2021-2023, Sam Atkins <atkinssj@serenityos.org> | 
					
						
							| 
									
										
										
										
											2021-03-09 17:36:21 +01:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2021-04-22 01:24:48 -07:00
										 |  |  |  * SPDX-License-Identifier: BSD-2-Clause | 
					
						
							| 
									
										
										
										
											2021-03-09 17:36:21 +01:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #pragma once
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-03-31 14:36:12 +01:00
										 |  |  | #include <LibWeb/CSS/Parser/Declaration.h>
 | 
					
						
							| 
									
										
										
										
											2022-04-12 19:05:13 +01:00
										 |  |  | #include <LibWeb/CSS/Parser/Rule.h>
 | 
					
						
							| 
									
										
										
										
											2021-03-09 17:36:21 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-12 14:51:19 +01:00
										 |  |  | namespace Web::CSS::Parser { | 
					
						
							| 
									
										
										
										
											2021-03-09 17:36:21 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | class DeclarationOrAtRule { | 
					
						
							|  |  |  | public: | 
					
						
							| 
									
										
										
										
											2022-04-12 19:05:13 +01:00
										 |  |  |     explicit DeclarationOrAtRule(RefPtr<Rule> at); | 
					
						
							| 
									
										
										
										
											2022-03-31 14:36:12 +01:00
										 |  |  |     explicit DeclarationOrAtRule(Declaration declaration); | 
					
						
							| 
									
										
										
										
											2021-03-09 17:36:21 +01:00
										 |  |  |     ~DeclarationOrAtRule(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     enum class DeclarationType { | 
					
						
							|  |  |  |         At, | 
					
						
							|  |  |  |         Declaration, | 
					
						
							|  |  |  |     }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-07-08 21:53:10 +01:00
										 |  |  |     bool is_at_rule() const { return m_type == DeclarationType::At; } | 
					
						
							|  |  |  |     bool is_declaration() const { return m_type == DeclarationType::Declaration; } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-12 19:05:13 +01:00
										 |  |  |     Rule const& at_rule() const | 
					
						
							| 
									
										
										
										
											2021-07-08 21:53:10 +01:00
										 |  |  |     { | 
					
						
							|  |  |  |         VERIFY(is_at_rule()); | 
					
						
							|  |  |  |         return *m_at; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-03-31 14:36:12 +01:00
										 |  |  |     Declaration const& declaration() const | 
					
						
							| 
									
										
										
										
											2021-07-08 21:53:10 +01:00
										 |  |  |     { | 
					
						
							|  |  |  |         VERIFY(is_declaration()); | 
					
						
							| 
									
										
										
										
											2022-04-12 16:16:55 +01:00
										 |  |  |         return *m_declaration; | 
					
						
							| 
									
										
										
										
											2021-07-08 21:53:10 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-03-09 17:36:21 +01:00
										 |  |  | private: | 
					
						
							|  |  |  |     DeclarationType m_type; | 
					
						
							| 
									
										
										
										
											2022-04-12 19:05:13 +01:00
										 |  |  |     RefPtr<Rule> m_at; | 
					
						
							| 
									
										
										
										
											2022-04-12 16:16:55 +01:00
										 |  |  |     Optional<Declaration> m_declaration; | 
					
						
							| 
									
										
										
										
											2021-03-09 17:36:21 +01:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | } |