Home | History | Annotate | Download | only in front-end

Lines Matching defs:PauseOnExceptionsState

197 WebInspector.ScriptsPanel.PauseOnExceptionsState = {
711 _setPauseOnExceptions: function(pauseOnExceptionsState)
713 pauseOnExceptionsState = pauseOnExceptionsState || WebInspector.ScriptsPanel.PauseOnExceptionsState.DontPauseOnExceptions;
718 if (pauseOnExceptionsState == WebInspector.ScriptsPanel.PauseOnExceptionsState.DontPauseOnExceptions)
720 else if (pauseOnExceptionsState == WebInspector.ScriptsPanel.PauseOnExceptionsState.PauseOnAllExceptions)
722 else if (pauseOnExceptionsState == WebInspector.ScriptsPanel.PauseOnExceptionsState.PauseOnUncaughtExceptions)
725 this._pauseOnExceptionButton.state = pauseOnExceptionsState;
726 WebInspector.settings.pauseOnExceptionStateString = pauseOnExceptionsState;
728 DebuggerAgent.setPauseOnExceptions(pauseOnExceptionsState, callback.bind(this));
839 var stateEnum = WebInspector.ScriptsPanel.PauseOnExceptionsState;