Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add up button #108

Merged
merged 2 commits into from
Sep 15, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ controlButtonSpecs
('Restart' restart 'rewind this context to its start (r)' canStepBackward)
('Into' stepInto 'step into next message send (e)' canStepForward)
('Over' stepOver 'step over next message send (t)' canStepForward)
('Through' stepThrough 'step into next block/out of current block (T)' canStepForward)
('Through' stepThrough 'step into next block/out of current block (T)' canStepForward)
('Back' stepBack 'rewind before previous message send (B)' canStepBackward)
('Where' showWhere 'select next expression (w)' hasContextSelected))
('Where' showWhere 'select next expression' hasContextSelected)
('Up' jumpToSender 'jump to sender (w)' hasContextSelected))
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@
"contextTreeKey:from:event:" : "ct 8/1/2022 01:10",
"contextVariablesInspector" : "ct 11/20/2021 16:11",
"contextVariablesInspectorClass" : "ct 3/19/2022 20:49",
"controlButtonSpecs" : "ct 2/21/2022 19:43",
"controlButtonSpecs" : "ct 9/15/2023 22:37",
"controlButtonsFrame" : "ct 11/20/2021 15:33",
"copyBugReportToClipboard" : "ct 3/12/2022 17:40",
"currentCompiledMethod" : "ct 11/20/2021 21:08",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,10 @@ You can use the stepping buttons to navigate through the program trace. The trac
<#figureButtonThrough> Step to the next expression in the same method, including expressions in blocks.
<#figureButtonBack> Step back the previous message send.
<#figureButtonWhere> Select the expression that will be executed next.
<#figureButtonUp> Jump to the sender of the current context.

Alternatively to the stepping buttons, you can also navigate through the context tree: Red-click any context to jump to the time where it was active. Shift + red-click any context to select its sender at its activation time.!
]style[(16 1 97 13 1257)a0b,a0,,i,!' readStream nextChunkText)
]style[(16 1 97 13 1318)a0b,a0,,i,!' readStream nextChunkText)
key: #basicBasicNavigation;
shouldStyle: false;
yourself
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
figures
figureButtonUp

^ self figureButtonNamed: 'Up'
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"class" : {
"applyUserInterfaceTheme" : "ct 3/18/2022 20:45",
"basicAdvancedNavigation" : "ct 8/1/2022 01:11",
"basicBasicNavigation" : "ct 6/18/2022 21:29",
"basicBasicNavigation" : "ct 9/15/2023 22:40",
"basicContextFilters" : "ct 3/18/2022 20:43",
"basicEntryPoints" : "ct 5/11/2022 22:54",
"basicFindingContexts" : "ct 3/18/2022 20:32",
Expand All @@ -28,6 +28,7 @@
"figureButtonProceed" : "ct 3/18/2022 19:36",
"figureButtonRestart" : "ct 3/18/2022 19:38",
"figureButtonThrough" : "ct 3/18/2022 19:38",
"figureButtonUp" : "ct 9/15/2023 22:40",
"figureButtonWhere" : "ct 3/18/2022 19:38",
"figureContextAddFilter" : "ct 3/18/2022 21:16",
"figureContextToolTip" : "ct 3/18/2022 18:35",
Expand Down
Loading