File tree Expand file tree Collapse file tree 4 files changed +0
-17
lines changed
extension/configuration/resolvers Expand file tree Collapse file tree 4 files changed +0
-17
lines changed Original file line number Diff line number Diff line change @@ -43,17 +43,10 @@ export class AttachConfigurationResolver extends BaseConfigurationResolver<Attac
4343 // Connect and listen cannot be mixed with host property.
4444 debugConfiguration . host = 'localhost' ;
4545 }
46- if ( debugConfiguration . justMyCode === undefined ) {
47- // Populate justMyCode using debugStdLib
48- debugConfiguration . justMyCode = ! debugConfiguration . debugStdLib ;
49- }
5046 debugConfiguration . showReturnValue = debugConfiguration . showReturnValue !== false ;
5147 // Pass workspace folder so we can get this when we get debug events firing.
5248 debugConfiguration . workspaceFolder = workspaceFolder ? workspaceFolder . fsPath : undefined ;
5349 const debugOptions = debugConfiguration . debugOptions ! ;
54- if ( ! debugConfiguration . justMyCode ) {
55- AttachConfigurationResolver . debugOption ( debugOptions , DebugOptions . DebugStdLib ) ;
56- }
5750 if ( debugConfiguration . django ) {
5851 AttachConfigurationResolver . debugOption ( debugOptions , DebugOptions . Django ) ;
5952 }
Original file line number Diff line number Diff line change @@ -145,14 +145,7 @@ export class LaunchConfigurationResolver extends BaseConfigurationResolver<Launc
145145 if ( ! Array . isArray ( debugConfiguration . debugOptions ) ) {
146146 debugConfiguration . debugOptions = [ ] ;
147147 }
148- if ( debugConfiguration . justMyCode === undefined ) {
149- // Populate justMyCode using debugStdLib
150- debugConfiguration . justMyCode = ! debugConfiguration . debugStdLib ;
151- }
152148 const debugOptions = debugConfiguration . debugOptions ! ;
153- if ( ! debugConfiguration . justMyCode ) {
154- LaunchConfigurationResolver . debugOption ( debugOptions , DebugOptions . DebugStdLib ) ;
155- }
156149 if ( debugConfiguration . stopOnEntry ) {
157150 LaunchConfigurationResolver . debugOption ( debugOptions , DebugOptions . StopOnEntry ) ;
158151 }
Original file line number Diff line number Diff line change @@ -11,7 +11,6 @@ export enum DebugOptions {
1111 RedirectOutput = 'RedirectOutput' ,
1212 Django = 'Django' ,
1313 Jinja = 'Jinja' ,
14- DebugStdLib = 'DebugStdLib' ,
1514 Sudo = 'Sudo' ,
1615 Pyramid = 'Pyramid' ,
1716 FixFilePathCase = 'FixFilePathCase' ,
Original file line number Diff line number Diff line change @@ -143,8 +143,6 @@ export class DebugLauncher implements ITestDebugLauncher {
143143 ) {
144144 // cfg.pythonPath is handled by LaunchConfigurationResolver.
145145
146- // Default value of justMyCode is not provided intentionally, for now we derive its value required for launchArgs using debugStdLib
147- // Have to provide it if and when we remove complete support for debugStdLib
148146 if ( ! cfg . console ) {
149147 cfg . console = 'internalConsole' ;
150148 }
You can’t perform that action at this time.
0 commit comments