File tree Expand file tree Collapse file tree 3 files changed +5
-4
lines changed
Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -68,7 +68,8 @@ CBClassBlueprint >> allAttributes [
6868{ #category : ' accessing' }
6969CBClassBlueprint >> attributeAccess [
7070
71- ^ (self allAttributes flatCollect: [:each | each attributeAccess]) reject: [ :each | each source entity isCBAccessor ].
71+ ^ (self allAttributes flatCollect: [ :each | each attributeAccess ])
72+ reject: [ :each | each source entity isAccessor ]
7273]
7374
7475{ #category : ' accessing' }
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ Extension { #name : 'Class' }
33{ #category : ' *Moose-Blueprint-Models' }
44Class >> blueprint [
55
6- ^ self blueprintView asInspectorPresenter open.
6+ ^ self blueprintView open.
77]
88
99{ #category : ' *Moose-Blueprint-Models' }
Original file line number Diff line number Diff line change @@ -108,7 +108,7 @@ FamixTMethod >> isIfNil [
108108{ #category : ' *Moose-Blueprint-Models' }
109109FamixTMethod >> isPureGetter [
110110
111- ^ #getter = self kind or : [ self isCBGetter ]
111+ ^ #getter = self kind or : [ self isGetter ]
112112]
113113
114114{ #category : ' *Moose-Blueprint-Models' }
@@ -175,7 +175,7 @@ FamixTMethod >> isTestMethod [
175175FamixTMethod >> isTested [
176176
177177 ^ (self incomingInvocations collect: #sender ) anySatisfy: [ :each |
178- each isTestCase ]
178+ each isTestCaseMethod ]
179179]
180180
181181{ #category : ' *Moose-Blueprint-Models' }
You can’t perform that action at this time.
0 commit comments