Index: src/interpreter/bytecode-generator.h |
diff --git a/src/interpreter/bytecode-generator.h b/src/interpreter/bytecode-generator.h |
index ee72135f4398f2d27d4eaffedffc0958d5bbef9b..ca64504069bc9bd0740fbc75477c732b5a15f046 100644 |
--- a/src/interpreter/bytecode-generator.h |
+++ b/src/interpreter/bytecode-generator.h |
@@ -24,8 +24,7 @@ |
public: |
explicit BytecodeGenerator(CompilationInfo* info); |
- void GenerateBytecode(); |
- Handle<BytecodeArray> FinalizeBytecode(Isolate* isolate); |
+ Handle<BytecodeArray> MakeBytecode(Isolate* isolate); |
#define DECLARE_VISIT(type) void Visit##type(type* node); |
AST_NODE_LIST(DECLARE_VISIT) |
@@ -53,8 +52,9 @@ |
enum class TestFallthrough { kThen, kElse, kNone }; |
+ void GenerateBytecode(); |
void GenerateBytecodeBody(); |
- void AllocateDeferredConstants(); |
+ void FinalizeBytecode(Isolate* isolate); |
DEFINE_AST_VISITOR_SUBCLASS_MEMBERS(); |