diff --git a/packages/@glimmer/runtime/lib/compiled/opcodes/debugger.ts b/packages/@glimmer/runtime/lib/compiled/opcodes/debugger.ts index b50a13129d..1aca4305e6 100644 --- a/packages/@glimmer/runtime/lib/compiled/opcodes/debugger.ts +++ b/packages/@glimmer/runtime/lib/compiled/opcodes/debugger.ts @@ -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; diff --git a/packages/@glimmer/runtime/lib/scope.ts b/packages/@glimmer/runtime/lib/scope.ts index 71ef1288fb..60e662376c 100644 --- a/packages/@glimmer/runtime/lib/scope.ts +++ b/packages/@glimmer/runtime/lib/scope.ts @@ -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(index: number): T {