mirror of
https://github.com/adelphes/android-dev-ext.git
synced 2025-12-22 09:29:38 +00:00
Expression format specifier support #73
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @adelphes on 4/24/2020
Adds support for appending format specifiers in repl and watch expressions, as defined in https://docs.microsoft.com/en-us/visualstudio/debugger/format-specifiers-in-cpp
Supported specifiers include:
,d: decimal,o: octal (with leading 0),x: hex (lowercase a-f with and 0x prefix),X: hex (uppercase A-F with and 0x prefix),xb: hex (lowercase a-f, no prefix),Xb: hex (uppercase A-F, no prefix),b: binary (with 0b prefix),bb: binary (no prefix),c: character,sb: string (no surrounding quotes),!: string (raw - no escaped characters)