Skip to content

Commit a3df291

Browse files
committed
refactor(compiler): callable kind
1 parent 9b46221 commit a3df291

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

compiler/suspend-transform-plugin/src/main/kotlin/love/forte/plugin/suspendtrans/symbol/AbstractSuspendTransformFunctionDescriptor.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ sealed class AbstractSuspendTransformFunctionDescriptor<D : SuspendTransformUser
2626
null,
2727
annotations,
2828
functionName,
29-
CallableMemberDescriptor.Kind.SYNTHESIZED,
29+
CallableMemberDescriptor.Kind.DECLARATION,
3030
originFunction.source
3131
) {
3232

compiler/suspend-transform-plugin/src/main/kotlin/love/forte/plugin/suspendtrans/symbol/AbstractSuspendTransformProperty.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ sealed class AbstractSuspendTransformProperty<D : SuspendTransformUserData>(
2525
sourceFunction.visibility,
2626
false,
2727
sourceFunction.name,
28-
CallableMemberDescriptor.Kind.SYNTHESIZED,
28+
CallableMemberDescriptor.Kind.DELEGATION,
2929
sourceFunction.source,
3030
false,
3131
false,

0 commit comments

Comments
 (0)