Add missing public modifiers in project code
This commit is contained in:
+2
-2
@@ -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
|
||||
|
||||
+1
-1
@@ -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
|
||||
}
|
||||
Reference in New Issue
Block a user