Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[INTERNAL] lib/processors/jsdoc: function result union needs parentheses
Otherwise this function which returns either an object or null: @returns {function(sap.ui.core.Control): ({rows: int, columns: int}|null)|undefined} ends up as: function(sap.ui.core.Control):{rows: int, columns: int} | null | undefined Which means the function *always* has an object as result and there could be null or undefined as *alternative* to the function. Cherry picked from SAP/openui5@b21d5c95c.
- Loading branch information