mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-21 03:55:24 +00:00
JSSpecCompiler: Move passes to Passes subdirectory of Compiler/
This commit is contained in:
parent
61fa00d46c
commit
867ce0df52
Notes:
sideshowbarker
2024-07-17 10:39:39 +09:00
Author: https://github.com/DanShaders Commit: https://github.com/SerenityOS/serenity/commit/867ce0df52 Pull-request: https://github.com/SerenityOS/serenity/pull/21296 Reviewed-by: https://github.com/ADKaster
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
Reference in a new issue