| Index: src/typing.cc
|
| diff --git a/src/typing.cc b/src/typing.cc
|
| index d4147039e0b114221d2c1d5aad58f3959a49fe91..ec0196e8c0c2fbc129b32b33c830d398c129a227 100644
|
| --- a/src/typing.cc
|
| +++ b/src/typing.cc
|
| @@ -16,13 +16,12 @@ namespace internal {
|
|
|
| AstTyper::AstTyper(CompilationInfo* info)
|
| : info_(info),
|
| - oracle_(
|
| - handle(info->closure()->shared()->code()),
|
| - handle(info->closure()->shared()->feedback_vector()),
|
| - handle(info->closure()->context()->native_context()),
|
| - info->zone()),
|
| + oracle_(info->isolate(), info->zone(),
|
| + handle(info->closure()->shared()->code()),
|
| + handle(info->closure()->shared()->feedback_vector()),
|
| + handle(info->closure()->context()->native_context())),
|
| store_(info->zone()) {
|
| - InitializeAstVisitor(info->zone());
|
| + InitializeAstVisitor(info->isolate(), info->zone());
|
| }
|
|
|
|
|
|
|