Namespace now exists only at definition time
This commit is contained in:
parent
0c9740e820
commit
33acc115fb
@ -23,6 +23,11 @@ public interface Module<mUE : Any, IK : Any> {
|
|||||||
@get:JvmName("getParentModule")
|
@get:JvmName("getParentModule")
|
||||||
public val parentModule: Module<*, IK>?
|
public val parentModule: Module<*, IK>?
|
||||||
|
|
||||||
|
@ReflectionApi
|
||||||
|
@Suppress("INAPPLICABLE_JVM_NAME")
|
||||||
|
@get:JvmName("getPathFromParentModuleRoot")
|
||||||
|
public val pathFromParentModuleRoot: List<String>?
|
||||||
|
|
||||||
@ReflectionApi
|
@ReflectionApi
|
||||||
@Suppress("INAPPLICABLE_JVM_NAME")
|
@Suppress("INAPPLICABLE_JVM_NAME")
|
||||||
@get:JvmName("getMemberTables")
|
@get:JvmName("getMemberTables")
|
||||||
|
@ -14,7 +14,9 @@ public interface ModuleScopedObject<oUE : Any?, mUE : Any, IK : Any> {
|
|||||||
public val module: Module<mUE, IK>
|
public val module: Module<mUE, IK>
|
||||||
|
|
||||||
@ReflectionApi
|
@ReflectionApi
|
||||||
public val namespace: Namespace<mUE, IK>
|
@Suppress("INAPPLICABLE_JVM_NAME")
|
||||||
|
@get:JvmName("getPathFromModuleRoot")
|
||||||
|
public val pathFromModuleRoot: List<String>
|
||||||
|
|
||||||
@ReflectionApi
|
@ReflectionApi
|
||||||
public val meta: ObjectOperations.ImplementationsProvider<oUE>
|
public val meta: ObjectOperations.ImplementationsProvider<oUE>
|
||||||
|
@ -12,8 +12,5 @@ public interface Namespace<mUE : Any, IK : Any> {
|
|||||||
@ReflectionApi
|
@ReflectionApi
|
||||||
@Suppress("INAPPLICABLE_JVM_NAME")
|
@Suppress("INAPPLICABLE_JVM_NAME")
|
||||||
@get:JvmName("getPath")
|
@get:JvmName("getPath")
|
||||||
public val path: List<String>
|
public val parent: Namespace<mUE, IK>?
|
||||||
|
|
||||||
@ReflectionApi
|
|
||||||
public val module: Module<mUE, IK>
|
|
||||||
}
|
}
|
@ -17,8 +17,8 @@ public interface Table<UE : Any, mUE : Any, IK : Any> {
|
|||||||
|
|
||||||
@ReflectionApi
|
@ReflectionApi
|
||||||
@Suppress("INAPPLICABLE_JVM_NAME")
|
@Suppress("INAPPLICABLE_JVM_NAME")
|
||||||
@get:JvmName("getNamespace")
|
@get:JvmName("getPathFromModuleRoot")
|
||||||
public val namespace: Namespace<mUE, IK>
|
public val pathFromModuleRoot: List<String>
|
||||||
|
|
||||||
@ReflectionApi
|
@ReflectionApi
|
||||||
@Suppress("INAPPLICABLE_JVM_NAME")
|
@Suppress("INAPPLICABLE_JVM_NAME")
|
||||||
|
Loading…
Reference in New Issue
Block a user