ember-script icon indicating copy to clipboard operation
ember-script copied to clipboard

explicitly calling get/set inside inferred computed property results in empty dependency

Open ghempton opened this issue 11 years ago • 0 comments

myProp: ~>
  @get('someOtherProp')

Results in

myProp: Ember.computed(function() {
  return this.get('someOtherProp');
}).property('');

ghempton avatar May 15 '13 21:05 ghempton