Skip to content

debug: add bytes view as hex values #2169

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
polinasok opened this issue Apr 7, 2022 · 0 comments
Open

debug: add bytes view as hex values #2169

polinasok opened this issue Apr 7, 2022 · 0 comments
Labels
debug/variables issues related to variables inspection/presentation Debug Issues related to the debugging functionality of the extension. FeatureRequest

Comments

@polinasok
Copy link
Contributor

Branching out of the follow-up discussion on #1459 (comment):

Option 1:

b: []uint8 len: 5, cap: 5, [72,101,108,108,111]
    string(): "Hello"
    %X: [68,65,6C,6C,6F] 
    [0]: 104
    [1]: 101 
    [2]: 108
    [3]: 108
    [4]: 111

Option 2:

b: []uint8 len: 5, cap: 5, [72,101,108,108,111]
    string(): "Hello"
    [0]: 104 = 0x68 = h
    [1]: 101 = 0x65 = e 
    [2]: 108 = 0x6c = l
    [3]: 108 = 0x6c = l
    [4]: 111 = 0x6f = o
@gopherbot gopherbot added this to the Untriaged milestone Apr 7, 2022
@polinasok polinasok added FeatureRequest Debug Issues related to the debugging functionality of the extension. DA: DlvDAP debug/variables issues related to variables inspection/presentation labels Apr 7, 2022
@suzmue suzmue modified the milestones: Untriaged, Unplanned Apr 7, 2022
@hyangah hyangah removed the DA: DlvDAP label Jun 7, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
debug/variables issues related to variables inspection/presentation Debug Issues related to the debugging functionality of the extension. FeatureRequest
Projects
None yet
Development

No branches or pull requests

4 participants