| Index: dart/lib/compiler/implementation/resolver.dart
|
| diff --git a/dart/lib/compiler/implementation/resolver.dart b/dart/lib/compiler/implementation/resolver.dart
|
| index afc79e0c9fbb8b0e60db0bb113034f552bb4c75c..978df3e2e2db69cb0ee68ad7338cf472dcd50be4 100644
|
| --- a/dart/lib/compiler/implementation/resolver.dart
|
| +++ b/dart/lib/compiler/implementation/resolver.dart
|
| @@ -828,6 +828,8 @@ class TypeResolver {
|
| }
|
| if (typeName.source.stringValue === 'void') {
|
| return compiler.types.voidType.element;
|
| + } else if (typeName.source.stringValue === 'Dynamic') {
|
| + return compiler.dynamicClass;
|
| } else if (send !== null) {
|
| Element e = scope.lookup(send.receiver.asIdentifier().source);
|
| if (e !== null && e.kind === ElementKind.PREFIX) {
|
|
|