Renamed JetType.isNullable() to isMarkedNullable()

This commit is contained in:
Valentin Kipyatkov
2014-12-03 21:36:10 +03:00
parent c76e69af62
commit b8d1f115bf
53 changed files with 91 additions and 96 deletions
@@ -351,7 +351,7 @@ public class DescriptorSerializer {
}
// to avoid storing a default
if (type.isNullable()) {
if (type.isMarkedNullable()) {
builder.setNullable(true);
}
@@ -43,7 +43,7 @@ class DeserializedType(
override fun getArguments(): List<TypeProjection> = arguments
override fun isNullable(): Boolean = typeProto.getNullable()
override fun isMarkedNullable(): Boolean = typeProto.getNullable()
private fun computeMemberScope(): JetScope =
if (isError()) {