Skip to content

Commit 8b7a1dc

Browse files
Merge pull request #21268 from emberjs/nvp/re-roll-lockfile
re-roll the lockfile
2 parents e3b553a + 860d8a2 commit 8b7a1dc

5 files changed

Lines changed: 1332 additions & 1908 deletions

File tree

eslint.config.mjs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -426,6 +426,8 @@ export default [
426426
'@typescript-eslint/no-confusing-void-expression': 'off',
427427
'@typescript-eslint/no-unnecessary-condition': 'off',
428428
'@typescript-eslint/naming-convention': 'off',
429+
// TypeError: Cannot read properties of undefined (reading 'range')
430+
'@typescript-eslint/no-unnecessary-type-arguments': 'off',
429431
},
430432
},
431433
{

packages/@glimmer/compiler/lib/passes/2-encoding/content.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ export class ContentEncoder {
128128

129129
SimpleElement({ tag, params, body, dynamicFeatures }: mir.SimpleElement): WireStatements {
130130
let op = dynamicFeatures ? SexpOpcodes.OpenElementWithSplat : SexpOpcodes.OpenElement;
131-
return new WireStatements<WireFormat.Statement | WireFormat.ElementParameter>([
131+
return new WireStatements([
132132
[op, deflateTagName(tag.chars)],
133133
...CONTENT.ElementParameters(params).toArray(),
134134
[SexpOpcodes.FlushElement],

packages/@glimmer/debug-util/lib/simple-cast.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ export function castToBrowser<S extends SugaryNodeCheck>(
9494
}
9595

9696
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion -- @fixme
97-
return checkBrowserNode<S>(node, sugaryCheck!);
97+
return checkBrowserNode(node, sugaryCheck!);
9898
}
9999

100100
function checkError(from: string, check: SugaryNodeCheck): Error {

packages/@glimmer/runtime/lib/scope.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,15 +108,15 @@ export class ScopeImpl implements Scope {
108108
}
109109

110110
bindSelf(self: Reference) {
111-
this.set<Reference>(0, self);
111+
this.set(0, self);
112112
}
113113

114114
bindSymbol(symbol: number, value: Reference) {
115115
this.set(symbol, value);
116116
}
117117

118118
bindBlock(symbol: number, value: Nullable<ScopeBlock>) {
119-
this.set<Nullable<ScopeBlock>>(symbol, value);
119+
this.set(symbol, value);
120120
}
121121

122122
bindCallerScope(scope: Nullable<Scope>): void {

0 commit comments

Comments
 (0)