Skip to content

Commit

Permalink
Merge pull request #814 from jecisc/imports
Browse files Browse the repository at this point in the history
Add navigation of imports
  • Loading branch information
jecisc authored Sep 2, 2024
2 parents b9aac5c + ed34bb6 commit 25c2b3a
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions src/Famix-Traits/MooseAbstractGroup.extension.st
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,13 @@ MooseAbstractGroup >> allImplicitVariables [
^self allUsing: FamixTImplicitVariable
]

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

<navigation: 'All imports'>
^self allUsing: FamixTImport
]

{ #category : #'*Famix-Traits' }
MooseAbstractGroup >> allInheritanceDefinitions [
<navigation: 'All inheritances'>
Expand Down Expand Up @@ -133,6 +140,13 @@ MooseAbstractGroup >> allModelClasses [
^ self cacheAt: 'All model classes' ifAbsentPut: [ MooseGroup withAll: (self allClasses reject: [ :each | each isStub ]) withDescription: 'All model classes' ]
]

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

<navigation: 'All model imports'>
^ self cacheAt: 'All model imports' ifAbsentPut: [ MooseGroup withAll: (self allImports reject: [ :each | each isStub ]) withDescription: 'All model imports' ]
]

{ #category : #'*Famix-Traits' }
MooseAbstractGroup >> allModelMethods [
<navigation: 'All model methods'>
Expand Down

0 comments on commit 25c2b3a

Please sign in to comment.