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.
2 parents f9ecab5 + 4da9c3e commit 96e8ccaCopy full SHA for 96e8cca
1 file changed
packages/@glimmer/syntax/lib/v2/normalize.ts
@@ -267,10 +267,7 @@ class ExpressionNormalizer {
267
let namedLoc = this.block.loc(hash.loc);
268
let argsLoc = SpanList.range([paramLoc, namedLoc]);
269
270
- let positional = this.block.builder.positional(
271
- params.map((p) => this.normalize(p, ASTv2.STRICT_RESOLUTION)),
272
- paramLoc
273
- );
+ let positional = this.block.builder.positional(paramList, paramLoc);
274
275
let named = this.block.builder.named(
276
hash.pairs.map((p) => this.namedArgument(p)),
0 commit comments