Reason being is that if you want to use a generic value attribute x:for (as in <label for="" /> you can't, because it conflicts with the ForAttributeParser. In general should probably avoid names that conflict with HTML attributes - or better yet, make the generic value attributes use some other attribute. Perhaps x:attr-{name} as in x:attr-for in this case.
Reason being is that if you want to use a generic value attribute
x:for
(as in<label for="" />
you can't, because it conflicts with theForAttributeParser
. In general should probably avoid names that conflict with HTML attributes - or better yet, make the generic value attributes use some other attribute. Perhapsx:attr-{name}
as inx:attr-for
in this case.