You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
#1775 implemented custom descriptions, but the motivating context issues also talk about values, which are missing support.
I'm debugging gleam-lang via javascript. It is a compiled language, and has a thin runtime and data-structure glue layers to make it work great in javascript.
My map looks something like this in the JS debugger:
Dict {
'[0,0]': "S"
_raw: /* reference to the raw/unformatted data-structure implementation */
}
Describe the feature you'd like
customProperties was marked deprecated in this repo, but it kind of works for my use case. Ideally, something like [Symbol.for('debug.value')] or similar.
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
#1775 implemented custom descriptions, but the motivating context issues also talk about values, which are missing support.
I'm debugging gleam-lang via javascript. It is a compiled language, and has a thin runtime and data-structure glue layers to make it work great in javascript.
My map looks something like this in the JS debugger:
As you can see, not very friendly.
I'd like the following:
Describe the feature you'd like
customProperties
was marked deprecated in this repo, but it kind of works for my use case. Ideally, something like[Symbol.for('debug.value')]
or similar.The text was updated successfully, but these errors were encountered: