-
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.
Complements 85f88dd - further aligning of app name spelling
- Loading branch information
Showing
15 changed files
with
37 additions
and
36 deletions.
There are no files selected for viewing
4 changes: 2 additions & 2 deletions
4
...eDebugger.package/TDBContextVariablesInspector.class/class/shouldShowExceptionContexts.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 |
---|---|---|
@@ -1,8 +1,8 @@ | ||
preferences | ||
shouldShowExceptionContexts | ||
<preference: 'Show exception contexts' | ||
category: 'Trace Debugger' | ||
description: 'If enabled, the context variables inspector in the bottom right corner of the Trace Debugger will display all active signaler contexts and handler actions for any exceptions on the stack.' | ||
category: 'TraceDebugger' | ||
description: 'If enabled, the context variables inspector in the bottom right corner of the TraceDebugger will display all active signaler contexts and handler actions for any exceptions on the stack.' | ||
type: #Boolean> | ||
|
||
^ ShouldShowExceptionContexts ifNil: [true] |
2 changes: 1 addition & 1 deletion
2
packages/TraceDebugger.package/TDBContextVariablesInspector.class/methodProperties.json
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: 2 additions & 2 deletions
4
packages/TraceDebugger.package/TDBMemory.class/class/useProxiesAlways.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 |
---|---|---|
@@ -1,8 +1,8 @@ | ||
preferences | ||
useProxiesAlways | ||
<preference: 'Use proxies always' | ||
category: 'Trace Debugger' | ||
description: 'If enabled, every lookup of an object in the historic memory of Trace Debugger will answer a transparent proxy, even if the viewed time is the present. This decreases overall performance but allows for massive smoke testing. Disabling this preference is an experiment.' | ||
category: 'TraceDebugger' | ||
description: 'If enabled, every lookup of an object in the historic memory of TraceDebugger will answer a transparent proxy, even if the viewed time is the present. This decreases overall performance but allows for massive smoke testing. Disabling this preference is an experiment.' | ||
type: #Boolean> | ||
|
||
^ UseProxiesAlways |
2 changes: 1 addition & 1 deletion
2
packages/TraceDebugger.package/TDBMemory.class/methodProperties.json
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: 2 additions & 2 deletions
4
packages/TraceDebugger.package/TraceDebugger.class/class/appName.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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
app - accessing | ||
appName | ||
"Note on casing and breaking: | ||
* TraceDebugger, the TraceDebugger: the product | ||
* trace debugger: a tool window of the TraceDebugger" | ||
* TraceDebugger, the TraceDebugger: the product; package name; class that represents a *trace debugger*; SimulationStudio plugin; preference category. | ||
* trace debugger: a tool window of the TraceDebugger." | ||
|
||
^ 'TraceDebugger' |
4 changes: 2 additions & 2 deletions
4
packages/TraceDebugger.package/TraceDebugger.class/class/appNameForWindow.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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
app - accessing | ||
appNameForWindow | ||
"Note on casing and breaking: | ||
* TraceDebugger, the TraceDebugger: the product | ||
* trace debugger: a tool window of the TraceDebugger" | ||
* TraceDebugger, the TraceDebugger: the product; package name; class that represents a *trace debugger*; SimulationStudio plugin; preference category. | ||
* trace debugger: a tool window of the TraceDebugger." | ||
|
||
^ 'Trace Debugger' |
2 changes: 1 addition & 1 deletion
2
packages/TraceDebugger.package/TraceDebugger.class/class/exampleSelfSupporting.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
2 changes: 1 addition & 1 deletion
2
packages/TraceDebugger.package/TraceDebugger.class/class/selfUpdateBranch.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
6 changes: 3 additions & 3 deletions
6
...s/TraceDebugger.package/TraceDebugger.class/class/shouldReplaceInspectorsWithExplorers.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 |
---|---|---|
@@ -1,8 +1,8 @@ | ||
preferences | ||
shouldReplaceInspectorsWithExplorers | ||
<preference: 'Replace inspectors with explorers in Trace Debugger' | ||
category: 'Trace Debugger' | ||
description: 'If enabled, the Trace Debugger will display hierarchical object explorers instead of conventional inspectors below the code pane. Experimental.' | ||
<preference: 'Replace inspectors with explorers in TraceDebugger' | ||
category: 'TraceDebugger' | ||
description: 'If enabled, the TraceDebugger will display hierarchical object explorers instead of conventional inspectors below the code pane. Experimental.' | ||
type: #Boolean> | ||
|
||
^ ShouldReplaceInspectorsWithExplorers ifNil: [false] |
6 changes: 3 additions & 3 deletions
6
packages/TraceDebugger.package/TraceDebugger.class/class/shouldShowContextStack.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 |
---|---|---|
@@ -1,8 +1,8 @@ | ||
preferences | ||
shouldShowContextStack | ||
<preference: 'Show stack list in Trace Debugger' | ||
category: 'Trace Debugger' | ||
description: 'If enabled, the Trace Debugger will display a traditional call stack next to the call tree.' | ||
<preference: 'Show stack list in TraceDebugger' | ||
category: 'TraceDebugger' | ||
description: 'If enabled, the TraceDebugger will display a traditional call stack next to the call tree.' | ||
type: #Boolean> | ||
|
||
^ ShouldShowContextStack ifNil: [false] |
6 changes: 3 additions & 3 deletions
6
packages/TraceDebugger.package/TraceDebugger.class/class/shouldShowContextTree.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 |
---|---|---|
@@ -1,8 +1,8 @@ | ||
preferences | ||
shouldShowContextTree | ||
<preference: 'Show call tree in Trace Debugger' | ||
category: 'Trace Debugger' | ||
description: 'Unless disabled, the Trace Debugger will display a rich call tree to navigate through the program trace.' | ||
<preference: 'Show call tree in TraceDebugger' | ||
category: 'TraceDebugger' | ||
description: 'Unless disabled, the TraceDebugger will display a rich call tree to navigate through the program trace.' | ||
type: #Boolean> | ||
|
||
^ ShouldShowContextTree ifNil: [true] |
4 changes: 2 additions & 2 deletions
4
packages/TraceDebugger.package/TraceDebugger.class/class/shouldShowReturnValue.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 |
---|---|---|
@@ -1,8 +1,8 @@ | ||
preferences | ||
shouldShowReturnValue | ||
<preference: 'Show return value in context tree' | ||
category: 'Trace Debugger' | ||
description: 'If enabled, the Trace Debugger will display the return value of every traced message right to its signature in the context tree. Otherwise, this information is still available by hovering any context in the tree. Experimental, might degrade performance.' | ||
category: 'TraceDebugger' | ||
description: 'If enabled, the TraceDebugger will display the return value of every traced message right to its signature in the context tree. Otherwise, this information is still available by hovering any context in the tree. Experimental, might degrade performance.' | ||
type: #Boolean> | ||
|
||
^ ShouldShowReturnValue ifNil: [false] |
5 changes: 3 additions & 2 deletions
5
packages/TraceDebugger.package/TraceDebugger.class/instance/emptyContents.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 |
---|---|---|
@@ -1,5 +1,6 @@ | ||
accessing - code pane | ||
emptyContents | ||
|
||
^ 'Carpe Squeak! To learn more about the TraceDebugger, {1}' asText format: | ||
{'check out the tutorial.' tdbAsTextWithAttribute: (PluggableTextAttribute evalBlock: [self showHelp])} | ||
^ 'Carpe Squeak! To learn more about the {1}, {2}' asText format: | ||
{self appName. | ||
'check out the tutorial.' tdbAsTextWithAttribute: (PluggableTextAttribute evalBlock: [self showHelp])} |
2 changes: 1 addition & 1 deletion
2
packages/TraceDebugger.package/TraceDebugger.class/instance/openPreferences.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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
actions | ||
openPreferences | ||
|
||
PreferenceBrowser open selectedCategory: 'Trace Debugger'. | ||
PreferenceBrowser open selectedCategory: 'TraceDebugger'. |
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