Skip to content

Commit

Permalink
Settings for the StHaltCache subscriptions (de)activation
Browse files Browse the repository at this point in the history
  • Loading branch information
StevenCostiou committed Jul 29, 2020
1 parent 8094bf9 commit 4ccebb7
Showing 1 changed file with 14 additions and 3 deletions.
17 changes: 14 additions & 3 deletions src/NewTools-Debugger-Breakpoints-Tools/StHaltCache.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,23 @@ StHaltCache class >> haltCacheSettingsOn: aBuilder [
label: 'Halt Cache';
parent: #debugging;
description: 'Halt cache settings';
with: [ (aBuilder setting: #scanAllSystem)
label: 'Perform a system-wide lookup to find all halts and breakpoints';
with: [
(aBuilder setting: #scanAllSystem)
label:
'Perform a system-wide lookup to find all halts and breakpoints';
target: self defaultCache;
default: false;
description:
'If true, then the halt cache will check for halts in all methods from the system. This can be slow for large systems (with lots of methods).' ]
'If true, then the halt cache will check for halts in all methods from the system.
This can be slow for large systems (with lots of methods).' ];
with: [
(aBuilder setting: #isActive)
label: 'Subscribe to method changes';
target: self defaultCache;
default: false;
description:
'Activates or deactivate system subscriptions to method changes.
If deactivated, the list of halts will not be updated in the debugging tools browsers.' ]
]

{ #category : #'accessing - cache' }
Expand Down

0 comments on commit 4ccebb7

Please sign in to comment.