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:
parent
597e0d95fe
commit
b61f198d22
6 changed files with 14 additions and 14 deletions
|
@ -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();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue