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

Unified Diff: src/builtins.cc

Issue 1888013002: Revert of Correctly annotate eval origin. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 8 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/api.cc ('k') | src/compiler.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/builtins.cc
diff --git a/src/builtins.cc b/src/builtins.cc
index 577ab0a116109023e660a88c3b6907fd40cb673d..d054916db0a700e330ea3aac6abf859d0ec4226a 100644
--- a/src/builtins.cc
+++ b/src/builtins.cc
@@ -2068,20 +2068,11 @@
}
// Compile source string in the native context.
- StackTraceFrameIterator it(isolate);
- int pos = RelocInfo::kNoPosition;
- Handle<SharedFunctionInfo> outer_info;
- if (!it.done() && it.is_javascript()) {
- FrameSummary summary = FrameSummary::GetFirst(it.javascript_frame());
- pos = summary.abstract_code()->SourcePosition(summary.code_offset());
- outer_info = Handle<SharedFunctionInfo>(summary.function()->shared());
- } else {
- outer_info =
- Handle<SharedFunctionInfo>(native_context->closure()->shared());
- }
-
+ Handle<SharedFunctionInfo> outer_info(native_context->closure()->shared(),
+ isolate);
return Compiler::GetFunctionFromEval(source, outer_info, native_context,
- SLOPPY, restriction, pos);
+ SLOPPY, restriction,
+ RelocInfo::kNoPosition);
}
} // namespace
« no previous file with comments | « src/api.cc ('k') | src/compiler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698