mirror of
https://github.com/eclipse/upm.git
synced 2025-07-26 05:31:17 +03:00
jsdoc: change errors to warning when unknown tags are encountered in xml
Signed-off-by: Mihai Tudor Panu <mihai.tudor.panu@intel.com>
This commit is contained in:
@ -804,7 +804,9 @@ function getText(obj, why) {
|
|||||||
return text += '– ';
|
return text += '– ';
|
||||||
default:
|
default:
|
||||||
// TODO: incomplete list of doxygen xsd implemented
|
// TODO: incomplete list of doxygen xsd implemented
|
||||||
throw new Error('NYI Unknown Object Type: ' + elem.name);
|
console.warn('NYI Unknown Object Type: ' + elem.name);
|
||||||
|
return text;
|
||||||
|
//throw new Error('NYI Unknown Object Type: ' + elem.name);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
throw new Error('NYI Unknown Type: ' + (typeof elem));
|
throw new Error('NYI Unknown Type: ' + (typeof elem));
|
||||||
|
Reference in New Issue
Block a user