Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(8)

Unified Diff: src/accessors.cc

Issue 352173006: Clean up the global object naming madness. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | src/api.cc » ('j') | src/api.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
}
« no previous file with comments | « no previous file | src/api.cc » ('j') | src/api.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698