Skip to content

Commit

Permalink
Fix more tests
Browse files Browse the repository at this point in the history
  • Loading branch information
alexcrichton committed Sep 7, 2022
1 parent eeb5eb9 commit 7c193ba
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion crates/wast/src/lexer.rs
Expand Up @@ -496,7 +496,9 @@ impl<'a> Lexer<'a> {
/// https://github.com/WebAssembly/spec/pull/1499 but the general gist is
/// that this is parsing the grammar:
///
/// reserved := (idchar | string)+
/// ```text
/// reserved := (idchar | string)+
/// ```
///
/// which means that it is eating any number of adjacent string/idchar
/// tokens (e.g. `a"b"c`) and returning the classification of what was
Expand Down

0 comments on commit 7c193ba

Please sign in to comment.