mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 08:22:45 +00:00 
			
		
		
		
	 f235da27d9
			
		
	
	
		f235da27d9
		
	
	
	
	
		
			
			This means deviating a little from the spec, so that we create a complete Block in one go instead of creating an empty one and then poking at its internals.
		
			
				
	
	
		
			31 lines
		
	
	
	
		
			620 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
	
		
			620 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2020-2021, the SerenityOS developers.
 | |
|  * Copyright (c) 2021-2022, Sam Atkins <atkinssj@serenityos.org>
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #include <LibWeb/CSS/Parser/Block.h>
 | |
| 
 | |
| namespace Web::CSS::Parser {
 | |
| 
 | |
| Block::Block(Token token, Vector<ComponentValue>&& values)
 | |
|     : m_token(move(token))
 | |
|     , m_values(move(values))
 | |
| {
 | |
| }
 | |
| 
 | |
| Block::~Block() = default;
 | |
| 
 | |
| String Block::to_string() const
 | |
| {
 | |
|     StringBuilder builder;
 | |
| 
 | |
|     builder.append(m_token.bracket_string());
 | |
|     builder.join(" ", m_values);
 | |
|     builder.append(m_token.bracket_mirror_string());
 | |
| 
 | |
|     return builder.to_string();
 | |
| }
 | |
| 
 | |
| }
 |