mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 04:12:43 +00:00 
			
		
		
		
	JSSpecCompiler: Move passes to Passes subdirectory of Compiler/
This commit is contained in:
		
							parent
							
								
									61fa00d46c
								
							
						
					
					
						commit
						867ce0df52
					
				
					 8 changed files with 9 additions and 9 deletions
				
			
		|  | @ -2,10 +2,10 @@ set(SOURCES | |||
|     AST/AST.cpp | ||||
|     AST/ASTPrinting.cpp | ||||
|     Compiler/CompilerPass.cpp | ||||
|     Compiler/FunctionCallCanonicalizationPass.cpp | ||||
|     Compiler/GenericASTPass.cpp | ||||
|     Compiler/IfBranchMergingPass.cpp | ||||
|     Compiler/ReferenceResolvingPass.cpp | ||||
|     Compiler/Passes/FunctionCallCanonicalizationPass.cpp | ||||
|     Compiler/Passes/IfBranchMergingPass.cpp | ||||
|     Compiler/Passes/ReferenceResolvingPass.cpp | ||||
|     Parser/CppASTConverter.cpp | ||||
|     Parser/Lexer.cpp | ||||
|     Parser/ParseError.cpp | ||||
|  |  | |||
|  | @ -4,7 +4,7 @@ | |||
|  * SPDX-License-Identifier: BSD-2-Clause | ||||
|  */ | ||||
| 
 | ||||
| #include "Compiler/FunctionCallCanonicalizationPass.h" | ||||
| #include "Compiler/Passes/FunctionCallCanonicalizationPass.h" | ||||
| #include "AST/AST.h" | ||||
| 
 | ||||
| namespace JSSpecCompiler { | ||||
|  | @ -7,7 +7,7 @@ | |||
| #include <AK/TypeCasts.h> | ||||
| 
 | ||||
| #include "AST/AST.h" | ||||
| #include "Compiler/IfBranchMergingPass.h" | ||||
| #include "Compiler/Passes/IfBranchMergingPass.h" | ||||
| 
 | ||||
| namespace JSSpecCompiler { | ||||
| 
 | ||||
|  | @ -7,7 +7,7 @@ | |||
| #include <AK/HashMap.h> | ||||
| 
 | ||||
| #include "AST/AST.h" | ||||
| #include "Compiler/ReferenceResolvingPass.h" | ||||
| #include "Compiler/Passes/ReferenceResolvingPass.h" | ||||
| #include "Function.h" | ||||
| 
 | ||||
| namespace JSSpecCompiler { | ||||
|  | @ -9,9 +9,9 @@ | |||
| #include <LibMain/Main.h> | ||||
| #include <LibXML/Parser/Parser.h> | ||||
| 
 | ||||
| #include "Compiler/FunctionCallCanonicalizationPass.h" | ||||
| #include "Compiler/IfBranchMergingPass.h" | ||||
| #include "Compiler/ReferenceResolvingPass.h" | ||||
| #include "Compiler/Passes/FunctionCallCanonicalizationPass.h" | ||||
| #include "Compiler/Passes/IfBranchMergingPass.h" | ||||
| #include "Compiler/Passes/ReferenceResolvingPass.h" | ||||
| #include "Function.h" | ||||
| #include "Parser/SpecParser.h" | ||||
| 
 | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Dan Klishch
						Dan Klishch