diff options
author | 2023-06-09 19:21:49 -0700 | |
---|---|---|
committer | 2023-06-09 19:21:49 -0700 | |
commit | 7c9352392d950aec66309cdcd566eab5e17d429e (patch) | |
tree | 213ea39bc8afabdfc78db48c214bd6c36bc1e8c8 /packages/bun-devtools/protocol/jsc.d.ts | |
parent | fef9853d5ae2818e71038dde3a5a82fe68cb97ef (diff) | |
download | bun-debugger-dev.tar.gz bun-debugger-dev.tar.zst bun-debugger-dev.zip |
Update readme and regendebugger-dev
Diffstat (limited to 'packages/bun-devtools/protocol/jsc.d.ts')
-rw-r--r-- | packages/bun-devtools/protocol/jsc.d.ts | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/packages/bun-devtools/protocol/jsc.d.ts b/packages/bun-devtools/protocol/jsc.d.ts index fa665ee0b..ecf28ec02 100644 --- a/packages/bun-devtools/protocol/jsc.d.ts +++ b/packages/bun-devtools/protocol/jsc.d.ts @@ -1211,7 +1211,8 @@ export namespace JSC { | "weakset" | "iterator" | "class" - | "proxy"; + | "proxy" + | "weakref"; /** Object class (constructor) name. Specified for <code>object</code> type values only. */ className?: string; /** Remote object value (in case of primitive values or JSON values if it was requested). */ @@ -1245,7 +1246,8 @@ export namespace JSC { | "weakset" | "iterator" | "class" - | "proxy"; + | "proxy" + | "weakref"; /** String representation of the object. */ description?: string; /** Determines whether preview is lossless (contains all information of the original object). */ @@ -1278,11 +1280,14 @@ export namespace JSC { | "weakset" | "iterator" | "class" - | "proxy"; + | "proxy" + | "weakref"; /** User-friendly property value string. */ value?: string; /** Nested value preview. */ valuePreview?: ObjectPreview; + /** True if this is a private field. */ + isPrivate?: boolean; /** True if this is an internal property. */ internal?: boolean; }; @@ -1320,6 +1325,8 @@ export namespace JSC { isOwn?: boolean; /** Property symbol object, if the property is a symbol. */ symbol?: Runtime.RemoteObject; + /** True if the property is a private field. */ + isPrivate?: boolean; /** True if the property value came from a native getter. */ nativeGetter?: boolean; }; |