Skip to content

Commit d281784

Browse files
Merge pull request #1242 from Julesboul/Pharo14
Adding a setting to change default stack selection in debugger to show TestAsserter contexts when step Into
2 parents 953c6e1 + d7c0040 commit d281784

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/NewTools-Debugger/StDebugger.class.st

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -774,6 +774,7 @@ StDebugger >> filterStack: aStack [
774774
StDebugger >> findFirstRelevantStackIndexIn: aStack [
775775
| counter |
776776
counter := 1.
777+
debuggerActionModel filterStack ifFalse: [ ^ counter ].
777778
aStack do: [ :context |
778779
context method methodClass == TestAsserter ifFalse: [ ^ counter ].
779780
counter := counter + 1 ].

0 commit comments

Comments
 (0)