| Index: test/cctest/heap/test-heap.cc
|
| diff --git a/test/cctest/heap/test-heap.cc b/test/cctest/heap/test-heap.cc
|
| index deaa6fbdf57e8f927bc9dfa8f3bca69c7b16310e..dee5292a53be49d50af364fea1d731a30418dd03 100644
|
| --- a/test/cctest/heap/test-heap.cc
|
| +++ b/test/cctest/heap/test-heap.cc
|
| @@ -1631,7 +1631,7 @@ TEST(CompilationCacheCachingBehavior) {
|
| MaybeHandle<SharedFunctionInfo> info = compilation_cache->LookupScript(
|
| source, Handle<Object>(), 0, 0,
|
| v8::ScriptOriginOptions(false, true, false), native_context,
|
| - language_mode);
|
| + language_mode, false);
|
| CHECK(!info.is_null());
|
|
|
| // Check that the code cache entry survives at least on GC.
|
| @@ -1642,7 +1642,7 @@ TEST(CompilationCacheCachingBehavior) {
|
| info = compilation_cache->LookupScript(
|
| source, Handle<Object>(), 0, 0,
|
| v8::ScriptOriginOptions(false, true, false), native_context,
|
| - language_mode);
|
| + language_mode, false);
|
| CHECK(!info.is_null());
|
| }
|
|
|
| @@ -1661,7 +1661,7 @@ TEST(CompilationCacheCachingBehavior) {
|
| info = compilation_cache->LookupScript(
|
| source, Handle<Object>(), 0, 0,
|
| v8::ScriptOriginOptions(false, true, false), native_context,
|
| - language_mode);
|
| + language_mode, false);
|
| CHECK(info.is_null());
|
| }
|
|
|
|
|