mirror of
				https://github.com/LadybirdBrowser/ladybird.git
				synced 2025-11-03 23:00:58 +00:00 
			
		
		
		
	
		
			
	
	
		
			18 lines
		
	
	
	
		
			331 B
		
	
	
	
		
			C++
		
	
	
	
	
	
		
		
			
		
	
	
			18 lines
		
	
	
	
		
			331 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| 
								 | 
							
								/*
							 | 
						||
| 
								 | 
							
								 * Copyright (c) 2024, Andreas Kling <kling@serenityos.org>
							 | 
						||
| 
								 | 
							
								 *
							 | 
						||
| 
								 | 
							
								 * SPDX-License-Identifier: BSD-2-Clause
							 | 
						||
| 
								 | 
							
								 */
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								#include <LibJS/Bytecode/BasicBlock.h>
							 | 
						||
| 
								 | 
							
								#include <LibJS/Bytecode/Label.h>
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								namespace JS::Bytecode {
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								Label::Label(Bytecode::BasicBlock const& basic_block)
							 | 
						||
| 
								 | 
							
								    : m_address_or_basic_block_index(basic_block.index())
							 | 
						||
| 
								 | 
							
								{
							 | 
						||
| 
								 | 
							
								}
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								}
							 |