Chromium Code Reviews| Index: src/accessors.cc |
| diff --git a/src/accessors.cc b/src/accessors.cc |
| index aeea430704d9f9956d7d9044fe51788a33be9996..8283b8761fcfb286372f85de5ff831b7a139c3ea 100644 |
| --- a/src/accessors.cc |
| +++ b/src/accessors.cc |
| @@ -153,10 +153,10 @@ Handle<Object> Accessors::FlattenNumber(Isolate* isolate, |
| Handle<Object> value) { |
| if (value->IsNumber() || !value->IsJSValue()) return value; |
| Handle<JSValue> wrapper = Handle<JSValue>::cast(value); |
| - ASSERT(wrapper->GetIsolate()->context()->native_context()->number_function()-> |
| + ASSERT(wrapper->GetIsolate()->native_context()->number_function()-> |
| has_initial_map()); |
| if (wrapper->map() == |
| - isolate->context()->native_context()->number_function()->initial_map()) { |
| + isolate->native_context()->number_function()->initial_map()) { |
|
Igor Sheludko
2014/07/01 08:35:41
While you are here: isolate->number_function()->in
|
| return handle(wrapper->value(), isolate); |
| } |