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
- stableSealedClass: STABLE (class with no mutable properties)
79
79
- elevation: STABLE (marked @Stable or @Immutable)
80
80
- unstableUser: UNSTABLE (has mutable properties or unstable members)
81
81
@@ -128,22 +128,22 @@ public fun com.skydoves.myapplication.StableUserCard(user: com.skydoves.myapplic
128
128
skippable: true
129
129
restartable: true
130
130
params:
131
-
- user: STABLE
131
+
- user: STABLE (class with no mutable properties)
132
132
133
133
@Composable
134
134
public fun com.skydoves.myapplication.Test(stableUser2: com.skydoves.myapplication.models.StableUser): kotlin.Unit
135
135
skippable: true
136
136
restartable: true
137
137
params:
138
-
- stableUser2: STABLE
138
+
- stableUser2: STABLE (class with no mutable properties)
139
139
140
140
@Composable
141
141
public fun com.skydoves.myapplication.Test(myClass2: com.skydoves.myapplication.models.MyClass2, normalClass: com.skydoves.myapplication.models.NormalClass, immutableList: kotlinx.collections.immutable.ImmutableList<kotlin.String>): kotlin.Unit
142
142
skippable: false
143
143
restartable: true
144
144
params:
145
145
- myClass2: UNSTABLE (has mutable properties or unstable members)
146
-
- normalClass: STABLE
146
+
- normalClass: STABLE (class with no mutable properties)
147
147
- immutableList: STABLE (known stable type)
148
148
149
149
@Composable
@@ -163,10 +163,10 @@ public fun com.skydoves.myapplication.Test2(myClass2: kotlin.collections.List<ko
163
163
164
164
@Composable
165
165
public fun com.skydoves.myapplication.Test3(myClass2: java.lang.StringBuilder): kotlin.Unit
166
-
skippable: true
166
+
skippable: false
167
167
restartable: true
168
168
params:
169
-
- myClass2: STABLE
169
+
- myClass2: UNSTABLE (mutable Java class)
170
170
171
171
@Composable
172
172
public fun com.skydoves.myapplication.Test4(count: androidx.lifecycle.ViewModel): kotlin.Unit
@@ -219,7 +219,7 @@ public fun com.skydoves.myapplication.TrackedMixedParameters(title: kotlin.Strin
219
219
params:
220
220
- title: STABLE (String is immutable)
221
221
- count: STABLE (primitive type)
222
-
- user: STABLE
222
+
- user: STABLE (class with no mutable properties)
223
223
224
224
@Composable
225
225
public fun com.skydoves.myapplication.TrackedUnstableUserCard(user: com.skydoves.myapplication.models.UnstableUser): kotlin.Unit
@@ -233,7 +233,7 @@ public fun com.skydoves.myapplication.TrackedUserProfile(user: com.skydoves.myap
233
233
skippable: true
234
234
restartable: true
235
235
params:
236
-
- user: STABLE
236
+
- user: STABLE (class with no mutable properties)
237
237
238
238
@Composable
239
239
public fun com.skydoves.myapplication.UnstableUserCard(user: com.skydoves.myapplication.models.UnstableUser): kotlin.Unit
0 commit comments