Skip to content

Commit 9b46221

Browse files
committed
build: release.yml
1 parent 82327ee commit 9b46221

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

.github/release.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,10 @@ changelog:
44
- 'for-release'
55
- 'ignore-in-release'
66

7+
categories:
8+
- title: 'Bug Fix'
9+
labels:
10+
- 'bug'
11+
- title: 'Other'
12+
labels:
13+
- '*'

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.DECLARATION,
29+
CallableMemberDescriptor.Kind.SYNTHESIZED,
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.DECLARATION,
28+
CallableMemberDescriptor.Kind.SYNTHESIZED,
2929
sourceFunction.source,
3030
false,
3131
false,

0 commit comments

Comments
 (0)