Skip to content

Commit

Permalink
When installing a VariableBreakpoint, we need to announce it to updat…
Browse files Browse the repository at this point in the history
…e the browser.

- remove metalink announcing option, we do not need that anymore now that we announce on the level of the breakpoint
- cleanup the old BreakpointNotification hierachy, not need to keep them around.
  • Loading branch information
MarcusDenker committed Nov 4, 2020
1 parent 4ee701e commit 5556321
Show file tree
Hide file tree
Showing 6 changed files with 2 additions and 95 deletions.
2 changes: 1 addition & 1 deletion src/Reflectivity/Breakpoint.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ Breakpoint >> enable [
Breakpoint >> initialize [

self class initializeSlots: self.
options := #(+ optionCompileOnLinkInstallation + optionAnnounce - optionStyler)
options := #(+ optionCompileOnLinkInstallation - optionStyler)
]

{ #category : #install }
Expand Down
10 changes: 0 additions & 10 deletions src/Reflectivity/BreakpointAddedNotification.class.st

This file was deleted.

24 changes: 0 additions & 24 deletions src/Reflectivity/BreakpointHitNotification.class.st

This file was deleted.

49 changes: 0 additions & 49 deletions src/Reflectivity/BreakpointNotification.class.st

This file was deleted.

10 changes: 0 additions & 10 deletions src/Reflectivity/BreakpointRemovedNotification.class.st

This file was deleted.

2 changes: 1 addition & 1 deletion src/Reflectivity/VariableBreakpoint.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -163,8 +163,8 @@ VariableBreakpoint >> install [
toVariableNamed: vName
option: self accessStrategy ].
isInstalled := true.
self setAsNodeProperty.
self class addBreakpoint: self.
self setAsNodeProperty
]

{ #category : #testing }
Expand Down

0 comments on commit 5556321

Please sign in to comment.