angular/packages/compiler/src/template_parser
Sergey Nikitin 687582fd99 fix(compiler): correctly parse attributes with a dot in the name (#32256)
Previously the compiler would ignore everything in the attribute
name after the first dot. For example
<div [attr.someAttr.attrSuffix]="var"></div>
is turned into <div someAttr="varValue"></div>.

This commit ensures that whole attribute name is captured.
Now <div [attr.someAttr.attrSuffix]="var"></div>
is turned into <div someAttr.attrSuffix="varValue"></div>

PR Close #32256
2019-11-07 01:02:57 +00:00
..
binding_parser.ts fix(compiler): correctly parse attributes with a dot in the name (#32256) 2019-11-07 01:02:57 +00:00
template_ast.ts refactor(compiler): ensure compatibility with typescript strict flag (#30993) 2019-07-18 14:21:25 -07:00
template_parser.ts test(compiler): add expression absolute span tests for TemplateAsts (#33253) 2019-10-24 09:53:58 -07:00
template_preparser.ts refactor(compiler): misc minor (#23441) 2018-04-19 16:32:09 -07:00