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

Unified Diff: sdk/lib/_internal/compiler/implementation/ssa/builder.dart

Issue 13408008: Use correct compilation unit for inlined field initializers. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 9 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 | « no previous file | tests/language/inline_super_field_lib.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/_internal/compiler/implementation/ssa/builder.dart
diff --git a/sdk/lib/_internal/compiler/implementation/ssa/builder.dart b/sdk/lib/_internal/compiler/implementation/ssa/builder.dart
index affa364be26d690b5c01e37606e214d2a02861f9..462d0b4e96f6796535359a8b17095268046a21b9 100644
--- a/sdk/lib/_internal/compiler/implementation/ssa/builder.dart
+++ b/sdk/lib/_internal/compiler/implementation/ssa/builder.dart
@@ -1335,7 +1335,9 @@ class SsaBuilder extends ResolvedVisitor implements Visitor {
// closure to class mapper.
compiler.closureToClassMapper.computeClosureToClassMapping(
member, node, elements);
+ sourceElementStack.add(member);
ngeoffray 2013/04/07 09:12:02 Please use inlinedFrom instead, that does exactly
right.accept(this);
+ sourceElementStack.removeLast();
elements = savedElements;
value = pop();
}
« no previous file with comments | « no previous file | tests/language/inline_super_field_lib.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698