@@ -35,7 +35,7 @@ interface LinkFormatInfo {
3535suite ( 'Workbench - TerminalLinkHandler' , ( ) => {
3636 suite ( 'localLinkRegex' , ( ) => {
3737 test ( 'Windows' , ( ) => {
38- const terminalLinkHandler = new TestTerminalLinkHandler ( new TestXterm ( ) , Platform . Windows , null , null , null , null ) ;
38+ const terminalLinkHandler = new TestTerminalLinkHandler ( new TestXterm ( ) , Platform . Windows , null , null , null , null , null ) ;
3939 function testLink ( link : string , linkUrl : string , lineNo ?: string , columnNo ?: string ) {
4040 assert . equal ( terminalLinkHandler . extractLinkUrl ( link ) , linkUrl ) ;
4141 assert . equal ( terminalLinkHandler . extractLinkUrl ( `:${ link } :` ) , linkUrl ) ;
@@ -105,7 +105,7 @@ suite('Workbench - TerminalLinkHandler', () => {
105105 } ) ;
106106
107107 test ( 'Linux' , ( ) => {
108- const terminalLinkHandler = new TestTerminalLinkHandler ( new TestXterm ( ) , Platform . Linux , null , null , null , null ) ;
108+ const terminalLinkHandler = new TestTerminalLinkHandler ( new TestXterm ( ) , Platform . Linux , null , null , null , null , null ) ;
109109 function testLink ( link : string , linkUrl : string , lineNo ?: string , columnNo ?: string ) {
110110 assert . equal ( terminalLinkHandler . extractLinkUrl ( link ) , linkUrl ) ;
111111 assert . equal ( terminalLinkHandler . extractLinkUrl ( `:${ link } :` ) , linkUrl ) ;
@@ -169,7 +169,7 @@ suite('Workbench - TerminalLinkHandler', () => {
169169
170170 suite ( 'preprocessPath' , ( ) => {
171171 test ( 'Windows' , ( ) => {
172- const linkHandler = new TestTerminalLinkHandler ( new TestXterm ( ) , Platform . Windows , 'C:\\base' , null , null , null ) ;
172+ const linkHandler = new TestTerminalLinkHandler ( new TestXterm ( ) , Platform . Windows , 'C:\\base' , null , null , null , null ) ;
173173
174174 let stub = sinon . stub ( path , 'join' , function ( arg1 : string , arg2 : string ) {
175175 return arg1 + '\\' + arg2 ;
@@ -182,7 +182,7 @@ suite('Workbench - TerminalLinkHandler', () => {
182182 } ) ;
183183
184184 test ( 'Linux' , ( ) => {
185- const linkHandler = new TestTerminalLinkHandler ( new TestXterm ( ) , Platform . Linux , '/base' , null , null , null ) ;
185+ const linkHandler = new TestTerminalLinkHandler ( new TestXterm ( ) , Platform . Linux , '/base' , null , null , null , null ) ;
186186
187187 let stub = sinon . stub ( path , 'join' , function ( arg1 : string , arg2 : string ) {
188188 return arg1 + '/' + arg2 ;
@@ -195,7 +195,7 @@ suite('Workbench - TerminalLinkHandler', () => {
195195 } ) ;
196196
197197 test ( 'No Workspace' , ( ) => {
198- const linkHandler = new TestTerminalLinkHandler ( new TestXterm ( ) , Platform . Linux , null , null , null , null ) ;
198+ const linkHandler = new TestTerminalLinkHandler ( new TestXterm ( ) , Platform . Linux , null , null , null , null , null ) ;
199199
200200 assert . equal ( linkHandler . preprocessPath ( './src/file1' ) , null ) ;
201201 assert . equal ( linkHandler . preprocessPath ( 'src/file2' ) , null ) ;
0 commit comments