Skip to content
This repository was archived by the owner on Dec 13, 2018. It is now read-only.

Commit 116343c

Browse files
ebluesteinkcaze
authored andcommitted
Disable completions commands
Reviewed By: velocityboy Differential Revision: D9920473 fbshipit-source-id: d780e1c289ea49776825cfb42f4515b7e652f096
1 parent 205d4bf commit 116343c

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

pkg/nuclide-debugger-hhvm-rpc/lib/hhvmDebugger.js

+4-1
Original file line numberDiff line numberDiff line change
@@ -370,7 +370,7 @@ class HHVMDebuggerWrapper {
370370
supportsRestartRequest: false,
371371
supportsConditionalBreakpoints: true,
372372
supportsStepBack: false,
373-
supportsCompletionsRequest: true,
373+
supportsCompletionsRequest: false,
374374
supportsRestartFrame: false,
375375
supportsStepInTargetsRequest: false,
376376
supportsFunctionBreakpoints: true,
@@ -418,6 +418,9 @@ class HHVMDebuggerWrapper {
418418
this._asyncBreakPending = true;
419419
return false;
420420
}
421+
case 'completions': {
422+
return true;
423+
}
421424
default:
422425
break;
423426
}

0 commit comments

Comments
 (0)