Any . characters in type filters in property paths are being replaced (to avoid interfering with parsing), but are not restored afterwards. This means that a type filter with .s, ex: Root<Some.Type.Name>.OtherProperty will not work.
|
path = path.replace(/<[^>]*>/ig, function (e) { return e.replace(/\./ig, function () { return "$_$"; }); }); |
Any
.characters in type filters in property paths are being replaced (to avoid interfering with parsing), but are not restored afterwards. This means that a type filter with.s, ex:Root<Some.Type.Name>.OtherPropertywill not work.model.js/src/property-chain.ts
Line 28 in 45195a6