We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b49f2aa commit 0c86700Copy full SHA for 0c86700
kotlinx-coroutines-core/jvm/src/internal/intellij/intellij.kt
@@ -0,0 +1,12 @@
1
+package kotlinx.coroutines.internal.intellij
2
+
3
+import kotlinx.coroutines.InternalCoroutinesApi
4
5
+/**
6
+ * [IntellijCoroutines] exposes the API added as part of IntelliJ patches.
7
+ * Prefer to use the corresponding API from the IntelliJ Platform instead of accessing this object directly.
8
+ */
9
+@InternalCoroutinesApi
10
+public object IntellijCoroutines {
11
12
+}
kotlinx-coroutines-core/jvm/src/module-info.java
@@ -17,6 +17,7 @@
17
exports kotlinx.coroutines.flow.internal;
18
exports kotlinx.coroutines.future;
19
exports kotlinx.coroutines.internal;
20
+ exports kotlinx.coroutines.internal.intellij;
21
exports kotlinx.coroutines.intrinsics;
22
exports kotlinx.coroutines.scheduling;
23
exports kotlinx.coroutines.selects;
0 commit comments