We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 03b3108 commit 26a1f31Copy full SHA for 26a1f31
1 file changed
wit/wit.go
@@ -531,9 +531,10 @@ func escape(name string) string {
531
532
// A map of all [WIT keywords].
533
//
534
-// [WIT keywords]: https://github.com/bytecodealliance/wasm-tools/blob/main/crates/wit-parser/src/ast/lex.rs#L528-L578
+// [WIT keywords]: https://github.com/bytecodealliance/wasm-tools/blob/main/crates/wit-parser/src/ast/lex.rs#L530-L581
535
var witKeywords = map[string]bool{
536
"as": true,
537
+ "async": true,
538
"bool": true,
539
"borrow": true,
540
"char": true,
@@ -572,7 +573,7 @@ var witKeywords = map[string]bool{
572
573
"u8": true,
574
"use": true,
575
"variant": true,
- "wit": true,
576
+ "with": true,
577
"world": true,
578
}
579
0 commit comments