diff options
author | Michaël Zasso <targos@protonmail.com> | 2022-04-12 11:10:15 +0200 |
---|---|---|
committer | Michaël Zasso <targos@protonmail.com> | 2022-04-12 22:08:39 +0200 |
commit | fd4f80ce54d7f7b7503e0999f6a9d293d493846d (patch) | |
tree | 00fba34b8aabeb481c7128fccee635719ee44a3b /deps/v8/src/objects/script.h | |
parent | 73d53fe9f56d7ce5de4b9c9ad5257dc601bbce14 (diff) | |
download | node-new-fd4f80ce54d7f7b7503e0999f6a9d293d493846d.tar.gz |
deps: update V8 to 10.1.124.6
PR-URL: https://github.com/nodejs/node/pull/42657
Reviewed-By: Darshan Sen <raisinten@gmail.com>
Reviewed-By: Richard Lau <rlau@redhat.com>
Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
Reviewed-By: Michael Dawson <midawson@redhat.com>
Diffstat (limited to 'deps/v8/src/objects/script.h')
-rw-r--r-- | deps/v8/src/objects/script.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/deps/v8/src/objects/script.h b/deps/v8/src/objects/script.h index 09a65dbb1b..776209f4d4 100644 --- a/deps/v8/src/objects/script.h +++ b/deps/v8/src/objects/script.h @@ -191,6 +191,13 @@ class Script : public TorqueGeneratedScript<Script, Struct> { V8_EXPORT_PRIVATE bool GetPositionInfo(int position, PositionInfo* info, OffsetFlag offset_flag) const; + // Tells whether this script should be subject to debugging, e.g. for + // - scope inspection + // - internal break points + // - coverage and type profile + // - error stack trace + bool IsSubjectToDebugging() const; + bool IsUserJavaScript() const; // Wrappers for GetPositionInfo |