| Index: lib/compiler/implementation/resolver.dart
|
| diff --git a/lib/compiler/implementation/resolver.dart b/lib/compiler/implementation/resolver.dart
|
| index 373d01e14180cde4112be7ea551770e63a273bd2..629208757c5f4cbf5be975e972492ce5beddb2f0 100644
|
| --- a/lib/compiler/implementation/resolver.dart
|
| +++ b/lib/compiler/implementation/resolver.dart
|
| @@ -984,7 +984,10 @@ class TypeResolver {
|
| }
|
| if (typeName.source.stringValue === 'void') {
|
| return compiler.types.voidType.element;
|
| - } else if (typeName.source.stringValue === 'Dynamic') {
|
| + } else if (
|
| + // TODO(aprelev@gmail.com): Remove deprecated Dynamic keyword support.
|
| + typeName.source.stringValue === 'Dynamic'
|
| + || typeName.source.stringValue === 'dynamic') {
|
| return compiler.dynamicClass;
|
| } else if (send !== null) {
|
| Element e = scope.lookup(send.receiver.asIdentifier().source);
|
|
|