ember-polyfills / ember-angle-bracket-invocation-polyfill

MIT License
76 stars 33 forks source link

`let` doesn't work #37

Closed raghuvaran closed 6 years ago

raghuvaran commented 6 years ago
{{#let (component 'ui/timeline') as |Timeline|}}
<Timeline .../>
{{/let}}

doesn't yield Timeline nor throw any error. using with instead of let works fine!

I'm on "ember-source": "~3.1.2"

rwjblue commented 6 years ago

How are you using let (from which addon)? I don't believe it was a builtin feature until v3.2.0.

raghuvaran commented 6 years ago

Sorry, I was under assumption that ember-angle-bracket-invocation-polyfill addon will also polyfill let. After going thru the RFC again, I understood they are different.