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

Unified Diff: src/messages.cc

Issue 1371893002: objects-inl.h: Remove ACCESSORS_TO_SMI macro (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: undo last_script_id storage change Created 5 years, 3 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/log-inl.h ('k') | src/objects.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/messages.cc
diff --git a/src/messages.cc b/src/messages.cc
index eee8bea03bdee865fe1f353ca470d3ec02c74430..640c2dff4e891266ce2fab0c206173dc1f7067c5 100644
--- a/src/messages.cc
+++ b/src/messages.cc
@@ -278,7 +278,7 @@ int CallSite::GetColumnNumber() {
bool CallSite::IsNative() {
Handle<Object> script(fun_->shared()->script(), isolate_);
return script->IsScript() &&
- Handle<Script>::cast(script)->type()->value() == Script::TYPE_NATIVE;
+ Handle<Script>::cast(script)->type() == Script::TYPE_NATIVE;
}
« no previous file with comments | « src/log-inl.h ('k') | src/objects.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698