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

Unified Diff: src/prototype.h

Issue 2060213002: Revert of Replace all remaining Oddball checks with new function (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 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 | « src/objects-printer.cc ('k') | src/regexp/regexp-macro-assembler.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/prototype.h
diff --git a/src/prototype.h b/src/prototype.h
index 032d9b6b347614422c5e42af284c5be8d650e744..bcfb2bf9d3118f86d9832ad30185918292f39238 100644
--- a/src/prototype.h
+++ b/src/prototype.h
@@ -57,7 +57,7 @@
: object_(receiver_map->prototype()),
isolate_(receiver_map->GetIsolate()),
where_to_end_(END_AT_NULL),
- is_at_end_(object_->IsNull(isolate_)),
+ is_at_end_(object_->IsNull()),
seen_proxies_(0) {}
explicit PrototypeIterator(Handle<Map> receiver_map)
@@ -65,7 +65,7 @@
handle_(handle(receiver_map->prototype(), receiver_map->GetIsolate())),
isolate_(receiver_map->GetIsolate()),
where_to_end_(END_AT_NULL),
- is_at_end_(handle_->IsNull(isolate_)),
+ is_at_end_(handle_->IsNull()),
seen_proxies_(0) {}
~PrototypeIterator() {}
@@ -114,7 +114,7 @@
Object* prototype = map->prototype();
is_at_end_ = where_to_end_ == END_AT_NON_HIDDEN
? !map->has_hidden_prototype()
- : prototype->IsNull(isolate_);
+ : prototype->IsNull();
if (handle_.is_null()) {
object_ = prototype;
@@ -153,8 +153,7 @@
MaybeHandle<Object> proto =
JSProxy::GetPrototype(Handle<JSProxy>::cast(handle_));
if (!proto.ToHandle(&handle_)) return false;
- is_at_end_ =
- where_to_end_ == END_AT_NON_HIDDEN || handle_->IsNull(isolate_);
+ is_at_end_ = where_to_end_ == END_AT_NON_HIDDEN || handle_->IsNull();
return true;
}
« no previous file with comments | « src/objects-printer.cc ('k') | src/regexp/regexp-macro-assembler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698