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 ef84418 commit d524d8cCopy full SHA for d524d8c
crates/test/src/go.rs
@@ -22,7 +22,12 @@ impl LanguageMethods for Go {
22
config: &crate::config::WitConfig,
23
_args: &[String],
24
) -> bool {
25
- config.error_context
+ // TODO: We _do_ support async, but only with a build of Go that has
26
+ // [this
27
+ // patch](https://github.com/dicej/go/commit/a1c83220fc9576cdb810e9624366cb998e69b22b).
28
+ // Once we either publish builds containing that patch or upstream
29
+ // something equivalent, we can remove the ` || config.async_` here.
30
+ config.error_context || config.async_
31
}
32
33
fn default_bindgen_args_for_codegen(&self) -> &[&str] {
0 commit comments