mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 03:02:45 +00:00 
			
		
		
		
	 f3db548a3d
			
		
	
	
		f3db548a3d
		
	
	
	
	
		
			
			DeprecatedFlyString relies heavily on DeprecatedString's StringImpl, so let's rename it to A) match the name of DeprecatedString, B) write a new FlyString class that is tied to String.
		
			
				
	
	
		
			30 lines
		
	
	
	
		
			697 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
	
		
			697 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #pragma once
 | |
| 
 | |
| #include <AK/DeprecatedFlyString.h>
 | |
| #include <LibWeb/DOM/CharacterData.h>
 | |
| 
 | |
| namespace Web::DOM {
 | |
| 
 | |
| class Comment final : public CharacterData {
 | |
|     WEB_PLATFORM_OBJECT(Comment, CharacterData);
 | |
| 
 | |
| public:
 | |
|     static JS::NonnullGCPtr<Comment> construct_impl(JS::Realm&, DeprecatedString const& data);
 | |
|     virtual ~Comment() override = default;
 | |
| 
 | |
|     virtual DeprecatedFlyString node_name() const override { return "#comment"; }
 | |
| 
 | |
| private:
 | |
|     Comment(Document&, DeprecatedString const&);
 | |
| };
 | |
| 
 | |
| template<>
 | |
| inline bool Node::fast_is<Comment>() const { return is_comment(); }
 | |
| 
 | |
| }
 |