| Index: src/compiler/pipeline.cc
|
| diff --git a/src/compiler/pipeline.cc b/src/compiler/pipeline.cc
|
| index 3ce3c851586d33cc56bb06d3ec0c297c684f5ca2..6561aeaf3565313fb6cfe85d73c262a24b29bb29 100644
|
| --- a/src/compiler/pipeline.cc
|
| +++ b/src/compiler/pipeline.cc
|
| @@ -534,7 +534,9 @@ PipelineStatistics* CreatePipelineStatistics(CompilationInfo* info,
|
| int pos = info->shared_info()->start_position();
|
| json_of << "{\"function\":\"" << function_name.get()
|
| << "\", \"sourcePosition\":" << pos << ", \"source\":\"";
|
| - if (!script->IsUndefined() && !script->source()->IsUndefined()) {
|
| + Isolate* isolate = info->isolate();
|
| + if (!script->IsUndefined(isolate) &&
|
| + !script->source()->IsUndefined(isolate)) {
|
| DisallowHeapAllocation no_allocation;
|
| int start = info->shared_info()->start_position();
|
| int len = info->shared_info()->end_position() - start;
|
|
|