Skip to content
This repository has been archived by the owner on Oct 15, 2020. It is now read-only.

Commit

Permalink
chakrashim: clean up legacy debugger code
Browse files Browse the repository at this point in the history
Since debugger support was removed upstream, this change removes the
corresponding chakrashim code.

PR-URL: #250
Reviewed-By: Kunal Pathak <Kunal.Pathak@microsoft.com>
Reviewed-By: Sandeep Agarwal <saagarwa@microsoft.com>
  • Loading branch information
kfarnung committed May 19, 2017
1 parent 9bf51e4 commit 65289ed
Show file tree
Hide file tree
Showing 12 changed files with 12 additions and 2,204 deletions.
3 changes: 0 additions & 3 deletions deps/chakrashim/chakrashim.gyp
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
'variables': {
'library_files': [
'lib/chakra_shim.js',
'lib/chakra_debug.js',
'lib/chakra_inspector.js'
],
'v8_enable_inspector%': 0,
Expand Down Expand Up @@ -102,8 +101,6 @@
'src/jsrtcontextcachedobj.inc',
'src/jsrtcontextshim.cc',
'src/jsrtcontextshim.h',
'src/jsrtdebug.cc',
'src/jsrtdebug.h',
'src/jsrtinspector.cc',
'src/jsrtinspector.h',
'src/jsrtinspectorhelpers.cc',
Expand Down
5 changes: 0 additions & 5 deletions deps/chakrashim/include/v8-debug.h
Original file line number Diff line number Diff line change
Expand Up @@ -79,18 +79,13 @@ class V8_EXPORT Debug {
static bool SetDebugEventListener(Isolate* isolate, EventCallback that,
Local<Value> data = Local<Value>());
static void DebugBreak(Isolate *isolate = NULL) {}
static void SetMessageHandler(Isolate* isolate, MessageHandler handler);
static void SendCommand(Isolate* isolate,
const uint16_t* command, int length,
ClientData* client_data = NULL);
static MaybeLocal<Value> GetMirror(Local<Context> context,
Handle<Value> obj) {
return MaybeLocal<Value>();
}
static void ProcessDebugMessages(Isolate* isolate) {}
static Local<Context> GetDebugContext(Isolate* isolate);

static void EnableDebug();
static void EnableInspector(bool enableReplayDebug = false);

static void SetLiveEditEnabled(Isolate* isolate, bool enable);
Expand Down
Loading

0 comments on commit 65289ed

Please sign in to comment.