Skip to content

Commit

Permalink
Implement IceWorkingCopyPatcherVisitor>>visitExtensionDefinition: (fi…
Browse files Browse the repository at this point in the history
…xes pharo#14395)

Extension definitions are just a container and have no content of their own, so the same implementation as #visitDirectoryDefinition:--just visit the children--seems reasonable.
  • Loading branch information
daniels220 committed Jan 18, 2024
1 parent bca617d commit d4e0162
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions Iceberg/IceWorkingCopyPatcherVisitor.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,13 @@ IceWorkingCopyPatcherVisitor >> visitDirectoryDefinition: anIceDirectoryDefiniti
self visitChildrenOf: currentNode
]

{ #category : 'visiting' }
IceWorkingCopyPatcherVisitor >> visitExtensionDefinition: anIceExtensionDefinition [
"An extension definition represents no changes on its own, visit the individual extension-method changes."

self visitChildrenOf: currentNode
]

{ #category : 'visiting' }
IceWorkingCopyPatcherVisitor >> visitFileNode: anIceFileDefinition [

Expand Down

0 comments on commit d4e0162

Please sign in to comment.