We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1aa6098 commit bf71ad2Copy full SHA for bf71ad2
.github/workflows/pull_request.yml
@@ -14,6 +14,8 @@ jobs:
14
tests:
15
name: Test
16
uses: swiftlang/github-workflows/.github/workflows/swift_package_test.yml@main
17
+ with:
18
+ enable_wasm_sdk_build: true
19
soundness:
20
name: Soundness
21
uses: swiftlang/github-workflows/.github/workflows/soundness.yml@main
Sources/SwiftLibraryPluginProvider/LibraryPluginProvider.swift
@@ -10,6 +10,8 @@
10
//
11
//===----------------------------------------------------------------------===//
12
13
+#if !os(WASI)
+
#if compiler(>=6)
public import SwiftSyntaxMacros
@_spi(PluginMessage) public import SwiftCompilerPluginMessageHandling
@@ -221,3 +223,5 @@ extension UnsafeMutableBufferPointer {
221
223
}
222
224
225
#endif
226
227
+#endif // !os(WASI)
0 commit comments