-
Notifications
You must be signed in to change notification settings - Fork 465
Description
General Summary
Our CI toolkit currently compares non-numeric table cells in the *tbl.htm files in a case-sensitive way, reporting them as TableStringDiffs. It would be helpful if this comparison was case-insensitive, or at the very least if diffs in capitalization could be split out from legitimate content differences in the cells (e.g., TableStringCaseDiff and TableStringDiff).
The need for this is coming up because refactoring passes are changing the sources of some strings, e.g., from hard-coded strings in function arguments (which are often not uppercased) to strings from the IDF file (which are uppercased if retrieved via the getObjectItem but not via the epJSON API) or strings from constant string_view arrays indexed by enums.
Detailed Description
See above. This is self explanatory.
Possible Implementation
No response