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
<template> | |
<!-- This works: --> | |
<div repeat.for="item of things"> | |
${item | test:message2:{ vm: $parent } & signal:'some-signal'} | |
</div> | |
<!-- This offends the parser. Uncomment to see error. --> | |
<!-- <div repeat.for="item of things"> | |
${item | test:message:$parent & signal:'some-signal'} | |
</div> --> |