ladybird/Meta/Lagom/Tools/CodeGenerators/JSSpecCompiler/Compiler
Timothy Flynn ec492a1a08 Everywhere: Run clang-format
The following command was used to clang-format these files:

    clang-format-18 -i $(find . \
        -not \( -path "./\.*" -prune \) \
        -not \( -path "./Base/*" -prune \) \
        -not \( -path "./Build/*" -prune \) \
        -not \( -path "./Toolchain/*" -prune \) \
        -not \( -path "./Ports/*" -prune \) \
        -type f -name "*.cpp" -o -name "*.mm" -o -name "*.h")

There are a couple of weird cases where clang-format now thinks that a
pointer access in an initializer list, e.g. `m_member(ptr->foo)`, is a
lambda return statement, and it puts spaces around the `->`.
2024-04-24 16:50:01 -04:00
..
Passes Everywhere: Run clang-format 2024-04-24 16:50:01 -04:00
CompilerPass.cpp JSSpecCompiler: Make TranslationUnit fields private 2024-01-21 14:57:10 -07:00
CompilerPass.h JSSpecCompiler: Refactor CompilerPass to accept TranslationUnitRef 2023-10-26 15:45:31 -06:00
ControlFlowGraph.cpp JSSpecCompiler: Prepare for building SSA 2024-01-04 12:06:56 -07:00
ControlFlowGraph.h JSSpecCompiler: Prepare for building SSA 2024-01-04 12:06:56 -07:00
EnableGraphPointers.h JSSpecCompiler: Prepare for building SSA 2024-01-04 12:06:56 -07:00
GenericASTPass.cpp JSSpecCompiler: Recurse into the correct subtrees in RecursiveASTVisitor 2024-01-21 14:57:10 -07:00
GenericASTPass.h JSSpecCompiler: Refactor CompilerPass to accept TranslationUnitRef 2023-10-26 15:45:31 -06:00
StronglyConnectedComponents.h JSSpecCompiler: Add bare-bones DCE pass 2024-01-14 16:05:51 -07:00