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

Unified Diff: runtime/vm/ast_printer.cc

Issue 1722733002: In background compilation make a copy of Field in order to freeze its state (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: s Created 4 years, 10 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 | « runtime/vm/ast.cc ('k') | runtime/vm/ast_transformer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/ast_printer.cc
diff --git a/runtime/vm/ast_printer.cc b/runtime/vm/ast_printer.cc
index d0c1c01b9344cbaa7bff5d21d6c5c42c57b277d8..e4388278f91d83fbf6d371f1da8a9b038a1fd6cd 100644
--- a/runtime/vm/ast_printer.cc
+++ b/runtime/vm/ast_printer.cc
@@ -137,7 +137,7 @@ void AstPrinter::VisitLoadInstanceFieldNode(LoadInstanceFieldNode* node) {
void AstPrinter::VisitStoreInstanceFieldNode(StoreInstanceFieldNode* node) {
- VisitGenericFieldNode(node, node->field());
+ VisitGenericFieldNode(node, Field::ZoneHandle(node->field().Original()));
}
« no previous file with comments | « runtime/vm/ast.cc ('k') | runtime/vm/ast_transformer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698