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

Unified Diff: sdk/lib/_internal/compiler/implementation/resolution/members.dart

Issue 12615002: Remove references to capital-D-Dynamic. (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
Index: sdk/lib/_internal/compiler/implementation/resolution/members.dart
diff --git a/sdk/lib/_internal/compiler/implementation/resolution/members.dart b/sdk/lib/_internal/compiler/implementation/resolution/members.dart
index ed986ed2d190767c86265e5430907b22e3824358..2a80563f009799796e4cb8e0611ce27c910f4d59 100644
--- a/sdk/lib/_internal/compiler/implementation/resolution/members.dart
+++ b/sdk/lib/_internal/compiler/implementation/resolution/members.dart
@@ -1409,10 +1409,6 @@ class TypeResolver {
String stringValue = typeName.source.stringValue;
if (identical(stringValue, 'void')) {
return compiler.types.voidType.element;
- } else if (identical(stringValue, 'Dynamic')) {
- // TODO(aprelev@gmail.com): Remove deprecated Dynamic keyword support.
- compiler.onDeprecatedFeature(typeName, 'Dynamic');
- return compiler.dynamicClass;
} else if (identical(stringValue, 'dynamic')) {
return compiler.dynamicClass;
} else {

Powered by Google App Engine
This is Rietveld 408576698