Add missing public modifiers in project code

This commit is contained in:
Pavel V. Talanov
2014-08-12 16:29:55 +04:00
parent aa02388aa0
commit 6588310736
36 changed files with 107 additions and 107 deletions
@@ -23,7 +23,7 @@ public trait PackageFragmentDescriptor : ClassOrPackageFragmentDescriptor {
override fun getContainingDeclaration(): ModuleDescriptor
val fqName: FqName
public val fqName: FqName
fun getMemberScope(): JetScope
public fun getMemberScope(): JetScope
}
@@ -22,12 +22,12 @@ import java.util.Collections
public trait Annotations : Iterable<AnnotationDescriptor> {
fun isEmpty(): Boolean
public fun isEmpty(): Boolean
fun findAnnotation(fqName: FqName): AnnotationDescriptor?
public fun findAnnotation(fqName: FqName): AnnotationDescriptor?
class object {
val EMPTY: Annotations = object : Annotations {
public val EMPTY: Annotations = object : Annotations {
override fun isEmpty() = true
override fun findAnnotation(fqName: FqName) = null
@@ -20,5 +20,5 @@ import org.jetbrains.jet.lang.resolve.name.FqName
// marker for DescriptorRenderer to treat specially in decompiler mode
public trait MissingDependencyErrorClass {
val fullFqName: FqName
public val fullFqName: FqName
}