1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 13:48:12 +00:00

LibJS: Rename Bytecode::ExecutionUnit => Bytecode::Executable

This commit is contained in:
Andreas Kling 2021-06-09 09:11:20 +02:00
parent 597e0d95fe
commit b61f198d22
6 changed files with 14 additions and 14 deletions

View file

@ -16,14 +16,14 @@
namespace JS::Bytecode {
struct ExecutionUnit {
struct Executable {
NonnullOwnPtrVector<BasicBlock> basic_blocks;
size_t number_of_registers { 0 };
};
class Generator {
public:
static ExecutionUnit generate(ASTNode const&);
static Executable generate(ASTNode const&);
Register allocate_register();