Introduce Location class to provide usage information in scopes

This commit is contained in:
Zalim Bashorov
2015-07-15 14:20:09 +03:00
parent 8c912fdb6d
commit 2d2d510ef0
@@ -243,3 +243,9 @@ public interface DescriptorKindExclude {
override val fullyExcludedDescriptorKinds: Int get() = 0
}
}
public interface Location {
companion object {
val NOWHERE = object : Location {}
}
}