-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
cursor: fix regression in step through from 2d02fde
- Loading branch information
Showing
9 changed files
with
36 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 18 additions & 0 deletions
18
packages/TraceDebuggerTests.package/TDBCursorTest.class/instance/testDoStepThroughHistory.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
tests - stepping | ||
testDoStepThroughHistory | ||
|
||
self | ||
runCursorFrom: (Context | ||
sender: nil | ||
receiver: TDBTestLogic new | ||
method: TDBTestLogic >> #griffleMethodReturnHome2 | ||
arguments: #()) | ||
stepsAndAssertions: | ||
#((doStepOver nil (willReallySend willReturn)) | ||
(doRestart nil (willReallySend)) | ||
(doStepInto griffleMethodReturn2 (willReallySend)) | ||
(doStepThrough (griffleMethodReturn2 isExecutingBlock) (willReallySend willReallySend)) | ||
(doStepThrough (griffleMethodReturn2 isExecutingBlock) (willReallySend willReturn)) | ||
(doStepThrough (griffleMethodReturn2 isExecutingBlock) (willReturn)) | ||
(doStepThrough (griffleMethodReturn2 isExecutingBlock) (willReallySend willReturn)) | ||
(doStepThrough griffleMethodReturn2 (willReturn))). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 4 additions & 0 deletions
4
packages/TraceDebuggerTests.package/TDBTestLogic.class/instance/griffleMethodReturn2.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
as yet unclassified | ||
griffleMethodReturn2 | ||
|
||
^ self griffle: [self griffle: [self wiffy1] with: self wiffy2] with: [self wiffy2] |
4 changes: 4 additions & 0 deletions
4
packages/TraceDebuggerTests.package/TDBTestLogic.class/instance/griffleMethodReturnHome2.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
as yet unclassified | ||
griffleMethodReturnHome2 | ||
|
||
^ self griffleMethodReturn2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 4 additions & 0 deletions
4
...es/TraceDebuggerTests.package/TDBTestLogicTest.class/instance/testGriffleMethodReturn2.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
tests | ||
testGriffleMethodReturn2 | ||
|
||
self assert: 18 equals: logic griffleMethodReturn2. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters