Skip to content

Commit 9d2a2b9

Browse files
committed
formatting
1 parent f539f08 commit 9d2a2b9

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

packages/compiler/test/test-wasm.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1947,12 +1947,14 @@ test('chunkedBindings: false', async t => {
19471947
test('parameterized rules: growing parameters should not blow the stack', t => {
19481948
t.throws(
19491949
() => {
1950-
const compiler = new Compiler(ohm.grammar(`
1950+
const compiler = new Compiler(
1951+
ohm.grammar(`
19511952
G {
19521953
start = grow<"a">
19531954
grow<e> = e | grow<(e | "x")>
19541955
}
1955-
`));
1956+
`)
1957+
);
19561958
compiler.compile();
19571959
},
19581960
{message: /Too many specializations/}

0 commit comments

Comments
 (0)