| Index: src/compiler.h
|
| diff --git a/src/compiler.h b/src/compiler.h
|
| index a77fc8ea4ab41b1e34c7bacf884dc6e46f8536ac..1bde901776b4a1e0c324fe3c497171d240e22f3e 100644
|
| --- a/src/compiler.h
|
| +++ b/src/compiler.h
|
| @@ -49,6 +49,8 @@ class CompilationInfo BASE_EMBEDDED {
|
| ASSERT(Isolate::Current() == isolate_);
|
| return isolate_;
|
| }
|
| + Zone* zone() { return isolate()->zone(); }
|
| +
|
| bool is_lazy() const { return (flags_ & IsLazy::mask()) != 0; }
|
| bool is_eval() const { return (flags_ & IsEval::mask()) != 0; }
|
| bool is_global() const { return (flags_ & IsGlobal::mask()) != 0; }
|
|
|