| Index: compiler/java/com/google/dart/compiler/type/DynamicTypeImplementation.java
|
| diff --git a/compiler/java/com/google/dart/compiler/type/DynamicTypeImplementation.java b/compiler/java/com/google/dart/compiler/type/DynamicTypeImplementation.java
|
| index 285fbd6b7926fec5da1fdf79861b7b04fb5565af..068c18bfe4e8bc179ec718797c113fcc9aaa63ab 100644
|
| --- a/compiler/java/com/google/dart/compiler/type/DynamicTypeImplementation.java
|
| +++ b/compiler/java/com/google/dart/compiler/type/DynamicTypeImplementation.java
|
| @@ -88,6 +88,16 @@ class DynamicTypeImplementation extends AbstractType implements DynamicType {
|
| return new Member() {
|
|
|
| @Override
|
| + public Type getGetterType() {
|
| + return DynamicTypeImplementation.this;
|
| + }
|
| +
|
| + @Override
|
| + public Type getSetterType() {
|
| + return DynamicTypeImplementation.this;
|
| + }
|
| +
|
| + @Override
|
| public Type getType() {
|
| return DynamicTypeImplementation.this;
|
| }
|
|
|