Given the following (admittedly incorrect) computed usage
storeIds: computed("storeIds", "line", function() {
return this.storeIds;
}),
This rule will convert it to the following, which blows up since the self-referential nature becomes more evident when an alias is installed under the hood.
storeIds: computed.reads('storeIds')
A better conversion would be
Given the following (admittedly incorrect) computed usage
This rule will convert it to the following, which blows up since the self-referential nature becomes more evident when an alias is installed under the hood.
A better conversion would be
storeIds: null