File tree Expand file tree Collapse file tree 1 file changed +4
-6
lines changed Expand file tree Collapse file tree 1 file changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -340,8 +340,8 @@ Call ${handleDialog.name} to handle it before continuing.`);
340340 }
341341 }
342342
343- response . push ( ...this . #getIncludeNetworkRequestsData ( context , data . bodies ) ) ;
344- response . push ( ...this . #getAttachedConsoleMessageData ( data . consoleData ) ) ;
343+ response . push ( ...this . #formatNetworkRequestData ( context , data . bodies ) ) ;
344+ response . push ( ...this . #formatConsoleData ( data . consoleData ) ) ;
345345
346346 if ( this . #networkRequestsOptions?. include ) {
347347 let requests = context . getNetworkRequests ( ) ;
@@ -435,9 +435,7 @@ Call ${handleDialog.name} to handle it before continuing.`);
435435 } ;
436436 }
437437
438- #getAttachedConsoleMessageData(
439- data : ConsoleMessageData | undefined ,
440- ) : string [ ] {
438+ #formatConsoleData( data : ConsoleMessageData | undefined ) : string [ ] {
441439 const response : string [ ] = [ ] ;
442440 if ( ! data ) {
443441 return response ;
@@ -447,7 +445,7 @@ Call ${handleDialog.name} to handle it before continuing.`);
447445 return response ;
448446 }
449447
450- #getIncludeNetworkRequestsData (
448+ #formatNetworkRequestData (
451449 context : McpContext ,
452450 data : {
453451 requestBody ?: string ;
You can’t perform that action at this time.
0 commit comments