File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
src/extension/debugger/configuration Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ export async function getConfigurationsForWorkspace(workspace: WorkspaceFolder):
29
29
if ( ! parsed . version ) {
30
30
throw Error ( 'Missing field in launch.json: version' ) ;
31
31
}
32
- traceLog ( " Using configuration in launch.json" ) ;
32
+ traceLog ( ' Using configuration in launch.json' ) ;
33
33
return parsed . configurations ;
34
34
}
35
35
Original file line number Diff line number Diff line change @@ -63,17 +63,17 @@ export abstract class BaseConfigurationResolver<T extends DebugConfiguration>
63
63
const workspaceFolders = getWorkspaceFolders ( ) ;
64
64
65
65
if ( ! Array . isArray ( workspaceFolders ) || workspaceFolders . length === 0 ) {
66
- traceLog ( " No workspace folder found" ) ;
66
+ traceLog ( ' No workspace folder found' ) ;
67
67
return program ? Uri . file ( path . dirname ( program ) ) : undefined ;
68
68
}
69
69
if ( workspaceFolders . length === 1 ) {
70
- traceLog ( " Using the only workspaceFolder found: " , workspaceFolders [ 0 ] . uri . fsPath ) ;
70
+ traceLog ( ' Using the only workspaceFolder found: ' , workspaceFolders [ 0 ] . uri . fsPath ) ;
71
71
return workspaceFolders [ 0 ] . uri ;
72
72
}
73
73
if ( program ) {
74
74
const workspaceFolder = getVSCodeWorkspaceFolder ( Uri . file ( program ) ) ;
75
75
if ( workspaceFolder ) {
76
- traceLog ( " Using workspaceFolder found for the program: " , workspaceFolder . uri . fsPath ) ;
76
+ traceLog ( ' Using workspaceFolder found for the program: ' , workspaceFolder . uri . fsPath ) ;
77
77
return workspaceFolder . uri ;
78
78
}
79
79
}
You can’t perform that action at this time.
0 commit comments