@@ -56,7 +56,7 @@ FamixStImporterContext class >> defineEntityDependencies [
56
56
with: self importingLocalVariable
57
57
with: self importingAccess
58
58
with: self importingArgument);
59
- at: self importingSmalltalkStubMethod put: (Set with: self importingMethod with: self importingSmalltalkStubMethod )
59
+ at: self importingStubMethod put: (Set with: self importingMethod with: self importingStubMethod )
60
60
]
61
61
62
62
{ #category : #initialize }
@@ -150,7 +150,7 @@ FamixStImporterContext class >> importingPackage [
150
150
]
151
151
152
152
{ #category : #' basic representation' }
153
- FamixStImporterContext class >> importingSmalltalkStubMethod [
153
+ FamixStImporterContext class >> importingStubMethod [
154
154
155
155
^ #StubMethod
156
156
]
@@ -312,10 +312,10 @@ FamixStImporterContext >> importPackage [
312
312
]
313
313
314
314
{ #category : #' importing-filters' }
315
- FamixStImporterContext >> importSmalltalkStubMethod [
315
+ FamixStImporterContext >> importStubMethod [
316
316
" Kind of a hack to import stub-methods in smalltalk"
317
317
318
- self entityKindsToBeExtracted addAll: (self allDependentsOf: self class importingSmalltalkStubMethod )
318
+ self entityKindsToBeExtracted addAll: (self allDependentsOf: self class importingStubMethod )
319
319
]
320
320
321
321
{ #category : #' import options' }
@@ -456,7 +456,7 @@ FamixStImporterContext >> shouldImportPackage [
456
456
{ #category : #' importing queries' }
457
457
FamixStImporterContext >> shouldImportSmalltalkStubMethod [
458
458
459
- ^ self shouldImport: self class importingSmalltalkStubMethod
459
+ ^ self shouldImport: self class importingStubMethod
460
460
]
461
461
462
462
{ #category : #' importing queries' }
0 commit comments