Skip to content

Commit

Permalink
Merge pull request pharo-project#6786 from MarcusDenker/methodsInProt…
Browse files Browse the repository at this point in the history
…ocol-not-extension

methodsInProtocol-not-extension
  • Loading branch information
MarcusDenker committed Jul 7, 2020
2 parents 54f1c66 + 9d3c2f9 commit cd14bd9
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 8 deletions.
7 changes: 7 additions & 0 deletions src/Kernel/ClassDescription.class.st
Expand Up @@ -878,6 +878,13 @@ ClassDescription >> localSlots [
^ self slots select: [ :aSlot | aSlot isDefinedByOwningClass ]
]

{ #category : #organization }
ClassDescription >> methodsInProtocol: aString [

^ (self organization listAtCategoryNamed: aString)
collect: [ :each | (self compiledMethodAt: each) ]
]

{ #category : #'accessing tags' }
ClassDescription >> methodsTaggedWith: aSymbol [
"Any method could be tagged with multiple symbols for user purpose.
Expand Down
8 changes: 0 additions & 8 deletions src/Ring-Definitions-Core/ClassDescription.extension.st

This file was deleted.

0 comments on commit cd14bd9

Please sign in to comment.