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

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: e 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
Index: runtime/vm/ast_printer.cc
diff --git a/runtime/vm/ast_printer.cc b/runtime/vm/ast_printer.cc
index d0c1c01b9344cbaa7bff5d21d6c5c42c57b277d8..f4a92184c3e96b1b2e88bc73dbca50d20b373d60 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, *node->field().OriginalAsHandle());
siva 2016/02/25 23:38:32 *node->OriginalAsHandle(node->field()));
srdjan 2016/02/26 00:40:42 Resolved using Field::ZoneHandle
}

Powered by Google App Engine
This is Rietveld 408576698