mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 20:22:45 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			39 lines
		
	
	
	
		
			876 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
	
		
			876 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2020, Andreas Kling <kling@serenityos.org>
 | |
|  * Copyright (c) 2021, Linus Groh <linusg@serenityos.org>
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #pragma once
 | |
| 
 | |
| #include <AK/FlyString.h>
 | |
| #include <AK/Vector.h>
 | |
| #include <LibJS/Heap/Cell.h>
 | |
| #include <LibJS/Runtime/Value.h>
 | |
| #include <LibJS/SourceRange.h>
 | |
| 
 | |
| namespace JS {
 | |
| 
 | |
| struct TracebackFrame {
 | |
|     FlyString function_name;
 | |
|     SourceRange source_range;
 | |
| };
 | |
| 
 | |
| class Exception : public Cell {
 | |
| public:
 | |
|     explicit Exception(Value);
 | |
|     virtual ~Exception() override = default;
 | |
| 
 | |
|     Value value() const { return m_value; }
 | |
|     const Vector<TracebackFrame, 32>& traceback() const { return m_traceback; }
 | |
| 
 | |
| private:
 | |
|     virtual const char* class_name() const override { return "Exception"; }
 | |
|     virtual void visit_edges(Visitor&) override;
 | |
| 
 | |
|     Value m_value;
 | |
|     Vector<TracebackFrame, 32> m_traceback;
 | |
| };
 | |
| 
 | |
| }
 | 
