Skip to content

Commit

Permalink
Merge 5617441
Browse files Browse the repository at this point in the history
  • Loading branch information
akgrant43 committed Oct 25, 2024
2 parents 426742a + 5617441 commit e8364f6
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/GToolkit-Utility-System/CompiledMethod.extension.st
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,12 @@ CompiledMethod >> gtIsOverridingUpTo: aSuperclass [
^ (self origin allSuperclassesIncluding: aSuperclass)
anySatisfy: [ :aClass | aClass includesSelector: self selector ]
]

{ #category : #'*GToolkit-Utility-System' }
CompiledMethod >> isSourceSearchable [
"Other projects may change this method to skip methods:
- that do not have access to their source code, or
- there are other challenges to access their source code."

^ true
]

0 comments on commit e8364f6

Please sign in to comment.