You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: leviathan/api/android/leviathan.api
+15-1Lines changed: 15 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -16,6 +16,14 @@ public final class com/composegears/leviathan/DependencyInitializationScope {
16
16
public final fun inject (Lcom/composegears/leviathan/Dependency;)Ljava/lang/Object;
17
17
}
18
18
19
+
public final class com/composegears/leviathan/FactoryDependency : com/composegears/leviathan/Dependency {
20
+
public fun injectedIn (Lcom/composegears/leviathan/DIScope;)Ljava/lang/Object;
21
+
}
22
+
23
+
public final class com/composegears/leviathan/InstanceDependency : com/composegears/leviathan/Dependency {
24
+
public fun injectedIn (Lcom/composegears/leviathan/DIScope;)Ljava/lang/Object;
25
+
}
26
+
19
27
public abstract class com/composegears/leviathan/Leviathan {
20
28
public static final field Companion Lcom/composegears/leviathan/Leviathan$Companion;
21
29
public fun <init> ()V
@@ -24,14 +32,20 @@ public abstract class com/composegears/leviathan/Leviathan {
24
32
protected static final fun getValue (Lcom/composegears/leviathan/Dependency;Lcom/composegears/leviathan/Leviathan;Lkotlin/reflect/KProperty;)Lcom/composegears/leviathan/Dependency;
25
33
protected final fun instanceOf (ZLkotlin/jvm/functions/Function1;)Lcom/composegears/leviathan/Dependency;
26
34
public static synthetic fun instanceOf$default (Lcom/composegears/leviathan/Leviathan;ZLkotlin/jvm/functions/Function1;ILjava/lang/Object;)Lcom/composegears/leviathan/Dependency;
35
+
protected final fun providableOf (Lkotlin/jvm/functions/Function0;)Lcom/composegears/leviathan/ProvidableDependency;
27
36
protected final fun valueOf (Ljava/lang/Object;)Lcom/composegears/leviathan/Dependency;
28
37
}
29
38
30
39
public final class com/composegears/leviathan/Leviathan$Companion {
31
40
}
32
41
42
+
public final class com/composegears/leviathan/ProvidableDependency : com/composegears/leviathan/Dependency {
43
+
public fun injectedIn (Lcom/composegears/leviathan/DIScope;)Ljava/lang/Object;
44
+
public final fun provides (Lkotlin/jvm/functions/Function0;)V
45
+
}
46
+
33
47
public final class com/composegears/leviathan/ValueDependency : com/composegears/leviathan/Dependency {
34
-
public fun <init> (Ljava/lang/Object;)V
35
48
public fun injectedIn (Lcom/composegears/leviathan/DIScope;)Ljava/lang/Object;
Copy file name to clipboardExpand all lines: leviathan/api/jvm/leviathan.api
+15-1Lines changed: 15 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -16,6 +16,14 @@ public final class com/composegears/leviathan/DependencyInitializationScope {
16
16
public final fun inject (Lcom/composegears/leviathan/Dependency;)Ljava/lang/Object;
17
17
}
18
18
19
+
public final class com/composegears/leviathan/FactoryDependency : com/composegears/leviathan/Dependency {
20
+
public fun injectedIn (Lcom/composegears/leviathan/DIScope;)Ljava/lang/Object;
21
+
}
22
+
23
+
public final class com/composegears/leviathan/InstanceDependency : com/composegears/leviathan/Dependency {
24
+
public fun injectedIn (Lcom/composegears/leviathan/DIScope;)Ljava/lang/Object;
25
+
}
26
+
19
27
public abstract class com/composegears/leviathan/Leviathan {
20
28
public static final field Companion Lcom/composegears/leviathan/Leviathan$Companion;
21
29
public fun <init> ()V
@@ -24,14 +32,20 @@ public abstract class com/composegears/leviathan/Leviathan {
24
32
protected static final fun getValue (Lcom/composegears/leviathan/Dependency;Lcom/composegears/leviathan/Leviathan;Lkotlin/reflect/KProperty;)Lcom/composegears/leviathan/Dependency;
25
33
protected final fun instanceOf (ZLkotlin/jvm/functions/Function1;)Lcom/composegears/leviathan/Dependency;
26
34
public static synthetic fun instanceOf$default (Lcom/composegears/leviathan/Leviathan;ZLkotlin/jvm/functions/Function1;ILjava/lang/Object;)Lcom/composegears/leviathan/Dependency;
35
+
protected final fun providableOf (Lkotlin/jvm/functions/Function0;)Lcom/composegears/leviathan/ProvidableDependency;
27
36
protected final fun valueOf (Ljava/lang/Object;)Lcom/composegears/leviathan/Dependency;
28
37
}
29
38
30
39
public final class com/composegears/leviathan/Leviathan$Companion {
31
40
}
32
41
42
+
public final class com/composegears/leviathan/ProvidableDependency : com/composegears/leviathan/Dependency {
43
+
public fun injectedIn (Lcom/composegears/leviathan/DIScope;)Ljava/lang/Object;
44
+
public final fun provides (Lkotlin/jvm/functions/Function0;)V
45
+
}
46
+
33
47
public final class com/composegears/leviathan/ValueDependency : com/composegears/leviathan/Dependency {
34
-
public fun <init> (Ljava/lang/Object;)V
35
48
public fun injectedIn (Lcom/composegears/leviathan/DIScope;)Ljava/lang/Object;
Copy file name to clipboardExpand all lines: leviathan/api/leviathan.klib.api
+15-2Lines changed: 15 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -15,15 +15,28 @@ abstract class com.composegears.leviathan/Leviathan { // com.composegears.leviat
15
15
16
16
final fun <#A1: kotlin/Any?> factoryOf(kotlin/Boolean = ..., kotlin/Function1<com.composegears.leviathan/DependencyInitializationScope, #A1>): com.composegears.leviathan/Dependency<#A1> // com.composegears.leviathan/Leviathan.factoryOf|factoryOf(kotlin.Boolean;kotlin.Function1<com.composegears.leviathan.DependencyInitializationScope,0:0>){0§<kotlin.Any?>}[0]
17
17
final fun <#A1: kotlin/Any?> instanceOf(kotlin/Boolean = ..., kotlin/Function1<com.composegears.leviathan/DependencyInitializationScope, #A1>): com.composegears.leviathan/Dependency<#A1> // com.composegears.leviathan/Leviathan.instanceOf|instanceOf(kotlin.Boolean;kotlin.Function1<com.composegears.leviathan.DependencyInitializationScope,0:0>){0§<kotlin.Any?>}[0]
18
+
final fun <#A1: kotlin/Any?> providableOf(kotlin/Function0<#A1>): com.composegears.leviathan/ProvidableDependency<#A1> // com.composegears.leviathan/Leviathan.providableOf|providableOf(kotlin.Function0<0:0>){0§<kotlin.Any?>}[0]
18
19
final fun <#A1: kotlin/Any?> valueOf(#A1): com.composegears.leviathan/Dependency<#A1> // com.composegears.leviathan/Leviathan.valueOf|valueOf(0:0){0§<kotlin.Any?>}[0]
19
20
20
21
final object Companion // com.composegears.leviathan/Leviathan.Companion|null[0]
21
22
}
22
23
23
-
final class <#A: kotlin/Any?> com.composegears.leviathan/ValueDependency : com.composegears.leviathan/Dependency<#A> { // com.composegears.leviathan/ValueDependency|null[0]
final class <#A: kotlin/Any?> com.composegears.leviathan/FactoryDependency : com.composegears.leviathan/Dependency<#A> { // com.composegears.leviathan/FactoryDependency|null[0]
25
+
final fun injectedIn(com.composegears.leviathan/DIScope): #A // com.composegears.leviathan/FactoryDependency.injectedIn|injectedIn(com.composegears.leviathan.DIScope){}[0]
26
+
}
27
+
28
+
final class <#A: kotlin/Any?> com.composegears.leviathan/InstanceDependency : com.composegears.leviathan/Dependency<#A> { // com.composegears.leviathan/InstanceDependency|null[0]
29
+
final fun injectedIn(com.composegears.leviathan/DIScope): #A // com.composegears.leviathan/InstanceDependency.injectedIn|injectedIn(com.composegears.leviathan.DIScope){}[0]
30
+
}
25
31
32
+
final class <#A: kotlin/Any?> com.composegears.leviathan/ProvidableDependency : com.composegears.leviathan/Dependency<#A> { // com.composegears.leviathan/ProvidableDependency|null[0]
33
+
final fun injectedIn(com.composegears.leviathan/DIScope): #A // com.composegears.leviathan/ProvidableDependency.injectedIn|injectedIn(com.composegears.leviathan.DIScope){}[0]
34
+
final fun provides(kotlin/Function0<#A>) // com.composegears.leviathan/ProvidableDependency.provides|provides(kotlin.Function0<1:0>){}[0]
35
+
}
36
+
37
+
final class <#A: kotlin/Any?> com.composegears.leviathan/ValueDependency : com.composegears.leviathan/Dependency<#A> { // com.composegears.leviathan/ValueDependency|null[0]
26
38
final fun injectedIn(com.composegears.leviathan/DIScope): #A // com.composegears.leviathan/ValueDependency.injectedIn|injectedIn(com.composegears.leviathan.DIScope){}[0]
39
+
final fun provides(#A) // com.composegears.leviathan/ValueDependency.provides|provides(1:0){}[0]
27
40
}
28
41
29
42
final class com.composegears.leviathan/DependencyInitializationScope { // com.composegears.leviathan/DependencyInitializationScope|null[0]
0 commit comments