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

Unified Diff: runtime/vm/ast_printer.cc

Issue 8547013: Add missing argument to HANDLESCOPE(). (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 9 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 | runtime/vm/class_finalizer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/ast_printer.cc
===================================================================
--- runtime/vm/ast_printer.cc (revision 1710)
+++ runtime/vm/ast_printer.cc (working copy)
@@ -418,7 +418,7 @@
void AstPrinter::PrintFunctionScope(const ParsedFunction& parsed_function) {
- HANDLESCOPE();
+ HANDLESCOPE(Isolate::Current());
const Function& function = parsed_function.function();
const Array& default_parameter_values =
parsed_function.default_parameter_values();
@@ -463,7 +463,7 @@
void AstPrinter::PrintFunctionNodes(const ParsedFunction& parsed_function) {
- HANDLESCOPE();
+ HANDLESCOPE(Isolate::Current());
SequenceNode* node_sequence = parsed_function.node_sequence();
ASSERT(node_sequence != NULL);
AstPrinter ast_printer;
« no previous file with comments | « no previous file | runtime/vm/class_finalizer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698