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

Unified Diff: src/compiler.cc

Issue 701093003: Correctly compute line numbers in functions from the function constructor. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 1 month 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/runtime/runtime.h » ('j') | src/v8natives.js » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compiler.cc
diff --git a/src/compiler.cc b/src/compiler.cc
index ba5f3fd56ea511d39162be59ff77f22f85cc9c22..6024a8d272b202fe77b88e9f856a5b50ebe7ad32 100644
--- a/src/compiler.cc
+++ b/src/compiler.cc
@@ -1152,6 +1152,12 @@ MaybeHandle<JSFunction> Compiler::GetFunctionFromEval(
compilation_cache->PutEval(source, outer_info, context, shared_info,
scope_position);
}
+ if (restriction == ONLY_SINGLE_FUNCTION_LITERAL) {
+ // Function constructor.
+ shared_info->set_name_should_print_as_anonymous(true);
+ // The actual body is wrapped, which adds a line.
+ script->set_line_offset(Smi::FromInt(-1));
+ }
}
} else if (shared_info->ic_age() != isolate->heap()->global_ic_age()) {
shared_info->ResetForNewContext(isolate->heap()->global_ic_age());
« no previous file with comments | « no previous file | src/runtime/runtime.h » ('j') | src/v8natives.js » ('J')

Powered by Google App Engine
This is Rietveld 408576698