Skip to content

Commit fabf5d4

Browse files
authored
fix extra spaces resulting in invalid block params (#1577)
1 parent ba48821 commit fabf5d4

File tree

2 files changed

+35
-0
lines changed

2 files changed

+35
-0
lines changed

packages/@glimmer/syntax/lib/parser/tokenizer-event-handlers.ts

+1
Original file line numberDiff line numberDiff line change
@@ -421,6 +421,7 @@ export class TokenizerEventHandlers extends HandlebarsNodeVisitors {
421421
);
422422
} else {
423423
state = { state: 'AfterEndPipe' };
424+
this.tokenizer.consume();
424425
}
425426
} else if (next === '>' || next === '/') {
426427
throw generateSyntaxError(

packages/@glimmer/syntax/test/parser-node-test.ts

+34
Original file line numberDiff line numberDiff line change
@@ -316,6 +316,25 @@ test('block with block params', () => {
316316
);
317317
});
318318

319+
test('block with block params edge case: extra spaces', () => {
320+
let t = `{{#foo as | bar bat baz |}}{{bar}} {{bat}} {{baz}}{{/foo}}`;
321+
322+
astEqual(
323+
t,
324+
b.template([
325+
b.block(
326+
b.path('foo'),
327+
null,
328+
null,
329+
b.blockItself(
330+
[b.mustache('bar'), b.text(' '), b.mustache('bat'), b.text(' '), b.mustache('baz')],
331+
['bar', 'bat', 'baz']
332+
)
333+
),
334+
])
335+
);
336+
});
337+
319338
test('block with block params edge case: multiline', () => {
320339
let t = `{{#foo as
321340
|bar bat
@@ -389,6 +408,21 @@ test('element with block params', () => {
389408
);
390409
});
391410

411+
test('element with block params edge case: extra spaces', () => {
412+
let t = `<Foo as | bar bat baz |>{{bar}} {{bat}} {{baz}}</Foo>`;
413+
414+
astEqual(
415+
t,
416+
b.template([
417+
element(
418+
'Foo',
419+
['as', b.var('bar'), b.var('bat'), b.var('baz')],
420+
['body', b.mustache('bar'), b.text(' '), b.mustache('bat'), b.text(' '), b.mustache('baz')]
421+
),
422+
])
423+
);
424+
});
425+
392426
test('element with block params edge case: multiline', () => {
393427
let t = `<Foo as
394428
|bar bat

0 commit comments

Comments
 (0)