Consider this template: ```html <li *foreach="{{ this.items }}"> <a href="{{ item.url }}">{{ item.name }}</a> <p *if="{{ item.foo }}">bar</p> </li> ``` While `item.url` and `item.name` render as expected... the `item` within the `*if` is always `undefined`. I'm not sure if this is expected, or a bug, or how to make it work as intended. Any help is appreciated. Thanks!