-
Notifications
You must be signed in to change notification settings - Fork 191
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1276 from glimmerjs/bugfix/do-not-eagerly-consume…
…-args-during-destruction
- Loading branch information
Showing
2 changed files
with
49 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -234,6 +234,52 @@ abstract class ModifierManagerTest extends RenderTest { | |
/You attempted to update `foo` on `.*`, but it had already been used previously in the same computation/ | ||
); | ||
} | ||
|
||
@test | ||
'does not eagerly access arguments during destruction'(assert: Assert) { | ||
class Foo extends CustomModifier {} | ||
|
||
let foo = this.defineModifier(Foo); | ||
|
||
let Main = defineComponent( | ||
{ foo }, | ||
'{{#if @state.show}}<h1 {{foo @state.bar [email protected]}}>hello world</h1>{{/if}}' | ||
); | ||
|
||
let barCount = 0; | ||
let bazCount = 0; | ||
|
||
class State { | ||
@tracked show = true; | ||
|
||
get bar() { | ||
if (this.show === false) { | ||
barCount++; | ||
} | ||
|
||
return; | ||
} | ||
|
||
get baz() { | ||
if (this.show === false) { | ||
bazCount++; | ||
} | ||
|
||
return; | ||
} | ||
} | ||
|
||
let state = new State(); | ||
|
||
this.renderComponent(Main, { state }); | ||
|
||
state.show = false; | ||
|
||
this.rerender(); | ||
|
||
assert.equal(barCount, 0, 'bar was not accessed during detruction'); | ||
assert.equal(bazCount, 0, 'baz was not accessed during detruction'); | ||
} | ||
} | ||
|
||
class ModifierManagerTest313 extends ModifierManagerTest { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters