Rendering for dynamic types

This commit is contained in:
Andrey Breslav
2014-11-09 23:55:31 +02:00
parent 65794183e7
commit e0bd881c1e
6 changed files with 18 additions and 4 deletions
@@ -97,6 +97,11 @@ public class MemberMatching {
assert innerType != null : "No inner type: " + nullableType;
return innerType.accept(this, null);
}
@Override
public String visitDynamicType(@NotNull JetDynamicType type, Void data) {
return "dynamic";
}
}, null);
}