angular-cn/packages/compiler/test/template_parser
Sergey Nikitin c0f69f3245 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:56 +00:00
..
util test(compiler): add expression absolute span tests for `TemplateAst`s (#33253) 2019-10-24 09:53:58 -07:00
binding_parser_spec.ts build: remove `main()` from specs (#21053) 2017-12-22 13:10:51 -08:00
template_parser_absolute_span_spec.ts test(compiler): add expression absolute span tests for `TemplateAst`s (#33253) 2019-10-24 09:53:58 -07:00
template_parser_spec.ts fix(compiler): correctly parse attributes with a dot in the name (#32256) 2019-11-07 01:02:56 +00:00
template_preparser_spec.ts build: remove `main()` from specs (#21053) 2017-12-22 13:10:51 -08:00