The inline binding parser in `NGTemplateParser.parseBindings()` silently overwrites duplicate binding keys. For example: ```html <wo:String value="$name" value="$other" /> ``` The second `value` quietly replaces the first. This should be a parse error.
The inline binding parser in
NGTemplateParser.parseBindings()silently overwrites duplicate binding keys. For example:The second
valuequietly replaces the first. This should be a parse error.