JSSpecCompiler: Refactor CompilerPass to accept TranslationUnitRef

This commit is contained in:
Dan Klishch 2023-09-29 19:43:19 -04:00 committed by Andrew Kaster
commit 61fa00d46c
Notes: sideshowbarker 2024-07-17 08:36:27 +09:00
8 changed files with 48 additions and 13 deletions

View file

@ -56,9 +56,9 @@ ErrorOr<int> serenity_main(Main::Arguments)
for (auto const& argument : spec_function.m_arguments)
function->m_local_variables.set(argument.name, make_ref_counted<VariableDeclaration>(argument.name));
FunctionCallCanonicalizationPass(function).run();
IfBranchMergingPass(function).run();
ReferenceResolvingPass(function).run();
FunctionCallCanonicalizationPass(&translation_unit).run();
IfBranchMergingPass(&translation_unit).run();
ReferenceResolvingPass(&translation_unit).run();
out("{}", function->m_ast);
return 0;