-
Notifications
You must be signed in to change notification settings - Fork 648
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add setBlackboxedRanges message type
Summary: Implement `Debugger.setBlackboxedRanges` that in the next diff would save a list of all the ranges that stepping into would trigger a subsequent step. In the next diff it is also used in filtering out frames in stack traces coming from these ranges. Even though this would land as part of the stack, if this is implemented on it's own, responding to `Debugger.setBlackboxedRanges` with: ``` sendResponseToClient(m::makeErrorResponse( req.id, m::ErrorCode::MethodNotFound, "setBlackboxedRanges is not implemented yet") ``` Does not affect the UX in any way. Reviewed By: dannysu, huntie Differential Revision: D62762751 fbshipit-source-id: 0430e8e0460c47ec6b05f014e736720c08c60085
- Loading branch information
1 parent
379c024
commit 63289a8
Showing
7 changed files
with
111 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters