Coco: long live the cocoplugin

Change-Id: I1d21c67233d302a0689c4689bf9c2f349387ba1c
Reviewed-by: Christian Stenger <christian.stenger@qt.io>
Reviewed-by: <github-actions-qt-creator@cristianadam.eu>
Reviewed-by: Eike Ziller <eike.ziller@qt.io>
Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
David Schulz
2022-04-01 07:35:08 +02:00
parent 56b5e1f4de
commit b50eb35a17
13 changed files with 570 additions and 2 deletions

View File

@@ -117,6 +117,18 @@ const char *nameForStyle(TextStyle style)
case C_OUTPUT_ARGUMENT: return "OutputArgument";
case C_STATIC_MEMBER: return "StaticMember";
case C_COCO_CODE_ADDED: return "CocoCodeAdded";
case C_COCO_PARTIALLY_COVERED: return "CocoPartiallyCovered";
case C_COCO_NOT_COVERED: return "CocoNotCovered";
case C_COCO_FULLY_COVERED: return "CocoFullyCovered";
case C_COCO_MANUALLY_VALIDATED: return "CocoManuallyValidated";
case C_COCO_DEAD_CODE: return "CocoDeadCode";
case C_COCO_EXECUTION_COUNT_TOO_LOW: return "CocoExecutionCountTooLow";
case C_COCO_NOT_COVERED_INFO: return "CocoNotCoveredInfo";
case C_COCO_COVERED_INFO: return "CocoCoveredInfo";
case C_COCO_MANUALLY_VALIDATED_INFO: return "CocoManuallyValidatedInfo";
case C_LAST_STYLE_SENTINEL: return "LastStyleSentinel";
}
return "Unknown Style";