Home
last modified time | relevance | path

Searched refs:oldType (Results 1 – 5 of 5) sorted by relevance

/interface/sdk-js/build-tools/api_diff/src/
Dindex.js118 formatDiffApi(oldApi, newApi, oldType, newType, oldDtsName, newDtsName) { argument
122 'oldType': oldType,
Djsdoc_diff.js337 const oldType = oldTagItem.getTypeTag();
339 if (!isArrayEquals(oldType, newType)) {
341 arrayToString(oldType), arrayToString(newType),
346 arrayToString(oldType),
Dformat_data.js225 if (changelogData.oldType !== changelogData.newType) {
Dcollect_api.js388 function collectTypeDiff(newType, oldType, startDiffNew, startDiffOld, diffApis, subsystemMap, note… argument
390 if (oldType !== newType) {
394 diffOld = startDiffOld + 'type:' + oldType;
/interface/sdk-js/build-tools/dts_parser/src/coreImpl/diff/
DDiffProcessor.ts530 static diffBaseType(oldType: string, newType: string): DiffTypeInfo | undefined {
532 if (oldType === newType) {
535 …diffTypeInfo.setStatusCode(ApiStatusCode.TYPE_CHNAGES).setOldMessage(oldType).setNewMessage(newTyp…
536 if (oldType === '') {
543 const compareVal: CompareReturnObjType = permiss.comparePermissions(oldType, newType);