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

Unified Diff: sdk/lib/_internal/compiler/implementation/js_emitter/code_emitter_task.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/js_emitter/code_emitter_task.dart
diff --git a/sdk/lib/_internal/compiler/implementation/js_emitter/code_emitter_task.dart b/sdk/lib/_internal/compiler/implementation/js_emitter/code_emitter_task.dart
index 7430e33f665855e6a6bfaa300008bbdae19ae028..a6386a38711f43c8fc311178e9856bda3257c085 100644
--- a/sdk/lib/_internal/compiler/implementation/js_emitter/code_emitter_task.dart
+++ b/sdk/lib/_internal/compiler/implementation/js_emitter/code_emitter_task.dart
@@ -810,7 +810,6 @@ class CodeEmitterTask extends CompilerTask {
unneededClasses.add(backend.jsUInt32Class);
unneededClasses.add(backend.jsUInt31Class);
unneededClasses.add(backend.jsPositiveIntClass);
- unneededClasses.add(compiler.dynamicClass);
return (ClassElement cls) => !unneededClasses.contains(cls);
}

Powered by Google App Engine
This is Rietveld 408576698