| Index: src/objects-debug.cc
|
| diff --git a/src/objects-debug.cc b/src/objects-debug.cc
|
| index a61eacf4d47e42886783d93f001156b53247d9ff..3eb7817b1aa2623ecf9d6d2e184612c6ae0b09cf 100644
|
| --- a/src/objects-debug.cc
|
| +++ b/src/objects-debug.cc
|
| @@ -501,7 +501,7 @@ void JSDate::JSDateVerify() {
|
| }
|
| if (cache_stamp()->IsSmi()) {
|
| CHECK(Smi::cast(cache_stamp())->value() <=
|
| - Smi::cast(Isolate::Current()->date_cache()->stamp())->value());
|
| + Smi::cast(GetIsolate()->date_cache()->stamp())->value());
|
| }
|
| }
|
|
|
| @@ -889,6 +889,7 @@ void CallHandlerInfo::CallHandlerInfoVerify() {
|
| void TemplateInfo::TemplateInfoVerify() {
|
| VerifyPointer(tag());
|
| VerifyPointer(property_list());
|
| + VerifyPointer(property_accessors());
|
| }
|
|
|
|
|
| @@ -897,7 +898,6 @@ void FunctionTemplateInfo::FunctionTemplateInfoVerify() {
|
| TemplateInfoVerify();
|
| VerifyPointer(serial_number());
|
| VerifyPointer(call_code());
|
| - VerifyPointer(property_accessors());
|
| VerifyPointer(prototype_template());
|
| VerifyPointer(parent_template());
|
| VerifyPointer(named_property_handler());
|
|
|