| Index: src/interpreter/bytecode-generator.h
|
| diff --git a/src/interpreter/bytecode-generator.h b/src/interpreter/bytecode-generator.h
|
| index 96405f6be158000d4185ec0fca20def90bf5ed69..7d8d44cdb8fc450e1710557f231bbe159fcb1ff6 100644
|
| --- a/src/interpreter/bytecode-generator.h
|
| +++ b/src/interpreter/bytecode-generator.h
|
| @@ -193,6 +193,7 @@ class BytecodeGenerator final : public AstVisitor<BytecodeGenerator> {
|
| int feedback_index(FeedbackVectorSlot slot) const;
|
|
|
| Handle<Name> home_object_symbol() const { return home_object_symbol_; }
|
| + Handle<Name> iterator_symbol() const { return iterator_symbol_; }
|
| Handle<Name> prototype_string() const { return prototype_string_; }
|
| Handle<FixedArray> empty_fixed_array() const { return empty_fixed_array_; }
|
| const AstRawString* undefined_string() const { return undefined_string_; }
|
| @@ -217,6 +218,7 @@ class BytecodeGenerator final : public AstVisitor<BytecodeGenerator> {
|
| int loop_depth_;
|
|
|
| Handle<Name> home_object_symbol_;
|
| + Handle<Name> iterator_symbol_;
|
| Handle<Name> prototype_string_;
|
| Handle<FixedArray> empty_fixed_array_;
|
| const AstRawString* undefined_string_;
|
|
|