Commit 2e86946f authored by yangguo's avatar yangguo Committed by Commit bot

Remove unused parameter from IsVisibleInStackTrace.

R=cbruni@chromium.org

Review-Url: https://codereview.chromium.org/1974243002
Cr-Commit-Position: refs/heads/master@{#36226}
parent 31b9ba3b
...@@ -321,7 +321,6 @@ void Isolate::PushStackTraceAndDie(unsigned int magic, void* ptr1, void* ptr2, ...@@ -321,7 +321,6 @@ void Isolate::PushStackTraceAndDie(unsigned int magic, void* ptr1, void* ptr2,
// yet. // yet.
static bool IsVisibleInStackTrace(JSFunction* fun, static bool IsVisibleInStackTrace(JSFunction* fun,
Object* caller, Object* caller,
Object* receiver,
bool* seen_caller) { bool* seen_caller) {
if ((fun == caller) && !(*seen_caller)) { if ((fun == caller) && !(*seen_caller)) {
*seen_caller = true; *seen_caller = true;
...@@ -397,9 +396,7 @@ Handle<Object> Isolate::CaptureSimpleStackTrace(Handle<JSReceiver> error_object, ...@@ -397,9 +396,7 @@ Handle<Object> Isolate::CaptureSimpleStackTrace(Handle<JSReceiver> error_object,
Handle<JSFunction> fun = frames[i].function(); Handle<JSFunction> fun = frames[i].function();
Handle<Object> recv = frames[i].receiver(); Handle<Object> recv = frames[i].receiver();
// Filter out internal frames that we do not want to show. // Filter out internal frames that we do not want to show.
if (!IsVisibleInStackTrace(*fun, *caller, *recv, &seen_caller)) { if (!IsVisibleInStackTrace(*fun, *caller, &seen_caller)) continue;
continue;
}
// Filter out frames from other security contexts. // Filter out frames from other security contexts.
if (!this->context()->HasSameSecurityTokenAs(fun->context())) { if (!this->context()->HasSameSecurityTokenAs(fun->context())) {
continue; continue;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment