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

Unified Diff: dart/runtime/vm/flow_graph_builder.cc

Issue 75123002: Version 1.0.0.6 (Closed) Base URL: http://dart.googlecode.com/svn/trunk/
Patch Set: Created 7 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 | « dart/runtime/vm/flow_graph.cc ('k') | dart/runtime/vm/flow_graph_compiler.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dart/runtime/vm/flow_graph_builder.cc
===================================================================
--- dart/runtime/vm/flow_graph_builder.cc (revision 30333)
+++ dart/runtime/vm/flow_graph_builder.cc (working copy)
@@ -3853,13 +3853,16 @@
void FlowGraphBuilder::Bailout(const char* reason) {
- const char* kFormat = "FlowGraphBuilder Bailout: %s %s";
- const char* function_name = parsed_function_->function().ToCString();
- intptr_t len = OS::SNPrint(NULL, 0, kFormat, function_name, reason) + 1;
- char* chars = Isolate::Current()->current_zone()->Alloc<char>(len);
- OS::SNPrint(chars, len, kFormat, function_name, reason);
+ const Function& function = parsed_function_->function();
const Error& error = Error::Handle(
- LanguageError::New(String::Handle(String::New(chars))));
+ LanguageError::NewFormatted(Error::Handle(), // No previous error.
+ Script::Handle(function.script()),
+ function.token_pos(),
+ LanguageError::kError,
+ Heap::kNew,
+ "FlowGraphBuilder Bailout: %s %s",
+ String::Handle(function.name()).ToCString(),
+ reason));
Isolate::Current()->long_jump_base()->Jump(1, error);
}
« no previous file with comments | « dart/runtime/vm/flow_graph.cc ('k') | dart/runtime/vm/flow_graph_compiler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698