Index: Source/devtools/front_end/DebuggerModel.js |
diff --git a/Source/devtools/front_end/DebuggerModel.js b/Source/devtools/front_end/DebuggerModel.js |
index 7fa4b4908d7815cba3806f8e3b222f94924b8be3..b342c752b73c8a30d4cf8521145242f6b60bae80 100644 |
--- a/Source/devtools/front_end/DebuggerModel.js |
+++ b/Source/devtools/front_end/DebuggerModel.js |
@@ -49,8 +49,6 @@ |
WebInspector.settings.pauseOnExceptionStateString = WebInspector.settings.createSetting("pauseOnExceptionStateString", WebInspector.DebuggerModel.PauseOnExceptionsState.DontPauseOnExceptions); |
WebInspector.settings.pauseOnExceptionStateString.addChangeListener(this._pauseOnExceptionStateChanged, this); |
- WebInspector.settings.lastPauseOnExceptionState = WebInspector.settings.createSetting("lastPauseOnExceptionState", WebInspector.DebuggerModel.PauseOnExceptionsState.PauseOnUncaughtExceptions); |
- |
WebInspector.settings.enableAsyncStackTraces.addChangeListener(this._asyncStackTracesStateChanged, this); |
this.enableDebugger(); |
@@ -58,11 +56,7 @@ |
WebInspector.DebuggerModel.applySkipStackFrameSettings(); |
} |
-/** |
- * Keep these in sync with WebCore::ScriptDebugServer |
- * |
- * @enum {string} |
- */ |
+// Keep these in sync with WebCore::ScriptDebugServer |
WebInspector.DebuggerModel.PauseOnExceptionsState = { |
DontPauseOnExceptions : "none", |
PauseOnAllExceptions : "all", |