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 3eb1e07 commit a2d0351Copy full SHA for a2d0351
src/parser/test.ts
@@ -52,7 +52,7 @@ function uniquePairs<T>(
52
return array.flatMap((a, i) => array.slice(i + 1).map((b) => [a, b]));
53
}
54
55
-Deno.test("parser", () => {
+Deno.test("small parser", () => {
56
const space = match(/\s*/, "space");
57
const parser = sequence(
58
match(/toki/, '"toki"').skip(space),
0 commit comments