Skip to content

Commit

Permalink
lintfix
Browse files Browse the repository at this point in the history
  • Loading branch information
NullVoxPopuli committed Jan 31, 2024
1 parent 95470fc commit 7f9a6c5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
2 changes: 1 addition & 1 deletion packages/@glimmer/runtime/lib/compiled/opcodes/debugger.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ class ScopeInspector {
ref = scope.getSelf();
} else if (locals[head]) {
ref = unwrap(locals[head]);
// FIXME restore get("@foo") functionality
// FIXME restore get("@foo") functionality
} else {
ref = this.scope.getSelf();
tail = parts;
Expand Down
6 changes: 1 addition & 5 deletions packages/@glimmer/runtime/lib/scope.ts
Original file line number Diff line number Diff line change
Expand Up @@ -106,11 +106,7 @@ export class ScopeImpl implements Scope {
}

child(): Scope {
return new ScopeImpl(
this.slots.slice(),
this.owner,
this.callerScope,
);
return new ScopeImpl(this.slots.slice(), this.owner, this.callerScope);
}

private get<T extends ScopeSlot>(index: number): T {
Expand Down

0 comments on commit 7f9a6c5

Please sign in to comment.