Skip to content

Commit

Permalink
Move #isMooseObject to Moose-Core
Browse files Browse the repository at this point in the history
  • Loading branch information
ClotildeToullec committed Mar 29, 2024
1 parent ead57ea commit 8e5a254
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/Moose-Core/MooseObject.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -358,6 +358,11 @@ MooseObject >> isMooseModel [
^ false
]

{ #category : #testing }
MooseObject >> isMooseObject [
^ true
]

{ #category : #testing }
MooseObject >> isOfType: aClassFAMIX [
^ self class isOfType: aClassFAMIX
Expand Down
5 changes: 5 additions & 0 deletions src/Moose-Core/Object.extension.st
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,11 @@ Object >> isMooseEntity [
^ false
]

{ #category : #'*Moose-Core' }
Object >> isMooseObject [
^ false
]

{ #category : #'*Moose-Core' }
Object class >> isOfType: aClassFAMIX [
^ false
Expand Down

0 comments on commit 8e5a254

Please sign in to comment.