[BUG] Debugger>>openFullNoSuspendLabel:

ohshima at is.titech.ac.jp ohshima at is.titech.ac.jp
Sun May 9 13:04:27 UTC 1999


  Hi,

  'Smalltalk isMorphic' returns a boolean value, while
'Debugger>>openFullNoSuspendLabel:' expects it is nil or
non-nil value.

  The following is the patch.

!Debugger methodsFor: 'initialize' stamp: 'yo 5/9/1999 22:02'!
openFullNoSuspendLabel: aString
	"Create and schedule a full debugger with the given label. Do not terminate the current active process."

	| topView |
	Smalltalk isMorphic ifTrue: [self openFullMorphicLabel: aString.
		^ Project current spawnNewProcess].
	topView _ self buildMVCDebuggerViewLabel: aString minSize: 300 at 200.
	topView controller openNoTerminate.
	^ topView
! !





More information about the Squeak-dev mailing list