Skip to content

Commit

Permalink
Merge pull request #813 from jecisc/modules
Browse files Browse the repository at this point in the history
Add navigation of modules
  • Loading branch information
jecisc authored Sep 2, 2024
2 parents 6e44187 + a8b8ea3 commit b9aac5c
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/Famix-Traits/MooseAbstractGroup.extension.st
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,12 @@ MooseAbstractGroup >> allModelMethods [
^ self cacheAt: 'All model methods' ifAbsentPut: [ self allMethods reject: [ :each | each isStub ] ]
]

{ #category : #'*Famix-Traits' }
MooseAbstractGroup >> allModelModules [
<navigation: 'All model modules'>
^ self cacheAt: 'All model modules' ifAbsentPut: [ MooseGroup withAll: (self allModules reject: #isStub) withDescription: 'All model modules' ]
]

{ #category : #'*Famix-Traits' }
MooseAbstractGroup >> allModelNamespaces [
<navigation: 'All model namespaces'>
Expand Down Expand Up @@ -173,6 +179,12 @@ MooseAbstractGroup >> allModelTypes [
^ self cacheAt: 'All model types' ifAbsentPut: [ (self allTypes reject: [ :each | each isStub ]) description: 'All model types' ]
]

{ #category : #'*Famix-Traits' }
MooseAbstractGroup >> allModules [
<navigation: 'All modules'>
^ self allUsing: FamixTModule
]

{ #category : #'*Famix-Traits' }
MooseAbstractGroup >> allNamespaces [

Expand Down

0 comments on commit b9aac5c

Please sign in to comment.