@@ -243,16 +243,16 @@ WebInspector.RuntimeModel.prototype = {
243243 * @param {!RuntimeAgent.ScriptId } scriptId
244244 * @param {number } executionContextId
245245 * @param {string= } objectGroup
246- * @param {boolean= } doNotPauseOnExceptionsAndMuteConsole
246+ * @param {boolean= } silent
247247 * @param {boolean= } includeCommandLineAPI
248248 * @param {boolean= } returnByValue
249249 * @param {boolean= } generatePreview
250250 * @param {boolean= } awaitPromise
251251 * @param {function(?RuntimeAgent.RemoteObject, ?RuntimeAgent.ExceptionDetails=)= } callback
252252 */
253- runScript : function ( scriptId , executionContextId , objectGroup , doNotPauseOnExceptionsAndMuteConsole , includeCommandLineAPI , returnByValue , generatePreview , awaitPromise , callback )
253+ runScript : function ( scriptId , executionContextId , objectGroup , silent , includeCommandLineAPI , returnByValue , generatePreview , awaitPromise , callback )
254254 {
255- this . _agent . runScript ( scriptId , executionContextId , objectGroup , doNotPauseOnExceptionsAndMuteConsole , includeCommandLineAPI , returnByValue , generatePreview , awaitPromise , innerCallback ) ;
255+ this . _agent . runScript ( scriptId , executionContextId , objectGroup , silent , includeCommandLineAPI , returnByValue , generatePreview , awaitPromise , innerCallback ) ;
256256
257257 /**
258258 * @param {?Protocol.Error } error
@@ -547,17 +547,17 @@ WebInspector.ExecutionContext.prototype = {
547547 * @param {string } expression
548548 * @param {string } objectGroup
549549 * @param {boolean } includeCommandLineAPI
550- * @param {boolean } doNotPauseOnExceptionsAndMuteConsole
550+ * @param {boolean } silent
551551 * @param {boolean } returnByValue
552552 * @param {boolean } generatePreview
553553 * @param {boolean } userGesture
554554 * @param {function(?WebInspector.RemoteObject, !RuntimeAgent.ExceptionDetails=) } callback
555555 */
556- evaluate : function ( expression , objectGroup , includeCommandLineAPI , doNotPauseOnExceptionsAndMuteConsole , returnByValue , generatePreview , userGesture , callback )
556+ evaluate : function ( expression , objectGroup , includeCommandLineAPI , silent , returnByValue , generatePreview , userGesture , callback )
557557 {
558558 // FIXME: It will be moved to separate ExecutionContext.
559559 if ( this . debuggerModel . selectedCallFrame ( ) ) {
560- this . debuggerModel . evaluateOnSelectedCallFrame ( expression , objectGroup , includeCommandLineAPI , doNotPauseOnExceptionsAndMuteConsole , returnByValue , generatePreview , callback ) ;
560+ this . debuggerModel . evaluateOnSelectedCallFrame ( expression , objectGroup , includeCommandLineAPI , silent , returnByValue , generatePreview , callback ) ;
561561 return ;
562562 }
563563 this . _evaluateGlobal . apply ( this , arguments ) ;
@@ -577,13 +577,13 @@ WebInspector.ExecutionContext.prototype = {
577577 * @param {string } expression
578578 * @param {string } objectGroup
579579 * @param {boolean } includeCommandLineAPI
580- * @param {boolean } doNotPauseOnExceptionsAndMuteConsole
580+ * @param {boolean } silent
581581 * @param {boolean } returnByValue
582582 * @param {boolean } generatePreview
583583 * @param {boolean } userGesture
584584 * @param {function(?WebInspector.RemoteObject, !RuntimeAgent.ExceptionDetails=) } callback
585585 */
586- _evaluateGlobal : function ( expression , objectGroup , includeCommandLineAPI , doNotPauseOnExceptionsAndMuteConsole , returnByValue , generatePreview , userGesture , callback )
586+ _evaluateGlobal : function ( expression , objectGroup , includeCommandLineAPI , silent , returnByValue , generatePreview , userGesture , callback )
587587 {
588588 if ( ! expression ) {
589589 // There is no expression, so the completion should happen against global properties.
@@ -605,7 +605,7 @@ WebInspector.ExecutionContext.prototype = {
605605 }
606606 callback ( this . runtimeModel . createRemoteObject ( result ) , exceptionDetails ) ;
607607 }
608- this . target ( ) . runtimeAgent ( ) . evaluate ( expression , objectGroup , includeCommandLineAPI , doNotPauseOnExceptionsAndMuteConsole , this . id , returnByValue , generatePreview , userGesture , false , evalCallback . bind ( this ) ) ;
608+ this . target ( ) . runtimeAgent ( ) . evaluate ( expression , objectGroup , includeCommandLineAPI , silent , this . id , returnByValue , generatePreview , userGesture , false , evalCallback . bind ( this ) ) ;
609609 } ,
610610
611611 /**
0 commit comments