SAP / ui5-typescript

Tooling to enable TypeScript support in SAPUI5/OpenUI5 projects
https://sap.github.io/ui5-typescript
Apache License 2.0
201 stars 28 forks source link

ts-types-esm: Model.createBindingContext returns Context|undefined #335

Open nlunets opened 2 years ago

nlunets commented 2 years ago

This is not so much a jsdoc error as a weird / stupid behavior (imo)

createBindingContext can apparently return in some case undefined (technically null based on the implementation) however when writing code this will never happen except when you do some weird thing.

It implies that resolve returns undefined (which btw is not in the signature) which would only happen if you have a relative binding without a parent context defined...

So ok it could happen but you'd be really looking for trouble writing such code :) I wonder if it really makes sense to return undefined at all or if you should have an unresolveable context of some kind in there somewhere.