mirror of
https://github.com/RGBCube/serenity
synced 2025-05-16 20:15:07 +00:00
JSSpecCompiler: Rename SpecParser.h to SpecificationParsing.h
This commit is contained in:
parent
211d20d389
commit
73ba6d77ab
14 changed files with 20 additions and 20 deletions
|
@ -16,7 +16,7 @@
|
|||
#include "Compiler/Passes/SSABuildingPass.h"
|
||||
#include "Function.h"
|
||||
#include "Parser/CppASTConverter.h"
|
||||
#include "Parser/SpecParser.h"
|
||||
#include "Parser/SpecificationParsing.h"
|
||||
|
||||
using namespace JSSpecCompiler;
|
||||
|
||||
|
@ -122,7 +122,7 @@ ErrorOr<int> serenity_main(Main::Arguments arguments)
|
|||
if (language == language_cpp)
|
||||
pipeline.add_step(adopt_own_if_nonnull(new CppParsingStep()));
|
||||
else
|
||||
pipeline.add_step(adopt_own_if_nonnull(new SpecParsingStep()));
|
||||
pipeline.add_step(adopt_own_if_nonnull(new SpecificationParsingStep()));
|
||||
pipeline.add_compilation_pass<IfBranchMergingPass>();
|
||||
pipeline.add_compilation_pass<ReferenceResolvingPass>();
|
||||
pipeline.add_compilation_pass<CFGBuildingPass>();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue