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

Unified Diff: sdk/lib/_internal/compiler/implementation/scanner/listener.dart

Issue 304153014: Remove element from DynamicType. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix infinite loop. Created 6 years, 7 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: sdk/lib/_internal/compiler/implementation/scanner/listener.dart
diff --git a/sdk/lib/_internal/compiler/implementation/scanner/listener.dart b/sdk/lib/_internal/compiler/implementation/scanner/listener.dart
index 889590cfc640fe4564ad2ce9d93ae4a385e0e777..5ee68c2747cace5452630c430dc89908d3478fe5 100644
--- a/sdk/lib/_internal/compiler/implementation/scanner/listener.dart
+++ b/sdk/lib/_internal/compiler/implementation/scanner/listener.dart
@@ -2184,7 +2184,7 @@ class PartialFieldList extends VariableList {
if (node.type != null) {
type = compiler.resolver.resolveTypeAnnotation(element, node.type);
} else {
- type = compiler.types.dynamicType;
+ type = const DynamicType();
}
});
assert(type != null);

Powered by Google App Engine
This is Rietveld 408576698