Skip to content

Commit 640101b

Browse files
cjihrigjasnell
authored andcommitted
src: remove process._inspectorEnbale
This commit removes process._inspectorEnbale which was spelled incorrectly, and is being properly implemented in a separate PR. Refs: #12949 PR-URL: #13460 Reviewed-By: Refael Ackermann <[email protected]> Reviewed-By: Luca Maraschi <[email protected]> Reviewed-By: Jeremiah Senkpiel <[email protected]> Reviewed-By: James M Snell <[email protected]>
1 parent e991cd7 commit 640101b

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

src/node.cc

+1-7
Original file line numberDiff line numberDiff line change
@@ -3400,13 +3400,7 @@ void SetupProcessObject(Environment* env,
34003400
READONLY_PROPERTY(process, "traceDeprecation", True(env->isolate()));
34013401
}
34023402

3403-
// TODO(refack): move the following 4 to `node_config`
3404-
// --inspect
3405-
if (debug_options.inspector_enabled()) {
3406-
READONLY_DONT_ENUM_PROPERTY(process,
3407-
"_inspectorEnbale", True(env->isolate()));
3408-
}
3409-
3403+
// TODO(refack): move the following 3 to `node_config`
34103404
// --inspect-brk
34113405
if (debug_options.wait_for_connect()) {
34123406
READONLY_DONT_ENUM_PROPERTY(process,

0 commit comments

Comments
 (0)