document isInspectable

Reviewed By: mhorowitz

Differential Revision: D6601992

fbshipit-source-id: 4bd69f90943b14286e5618c70fc7eaca689fb02c
This commit is contained in:
Ben Nham 2017-12-20 02:19:36 -08:00 committed by Facebook Github Bot
parent 0ae4c47daa
commit 59c7967627
1 changed files with 4 additions and 0 deletions

View File

@ -80,6 +80,10 @@ public:
return nullptr;
}
/**
* Returns whether or not the underlying executor supports debugging via the
* Chrome remote debugging protocol.
*/
virtual bool isInspectable() {
return false;
}