Skip to content

Commit

Permalink
Fix minor baseline issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Gabriel-Darbord committed Mar 9, 2024
1 parent 2a8d241 commit e51b0d8
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
3 changes: 2 additions & 1 deletion src/BaselineOfFamixValue/BaselineOfFamixValue.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,8 @@ BaselineOfFamixValue >> packages: spec [
with: [ spec requires: 'Famix-Value-Entities' ];
package: 'Famix-Value-Generator';
package: 'Famix-Value-Importer'
with: [ spec requires: 'Famix-Value-Entities' ];
with: [
spec requires: #( 'Famix-Value-Entities' 'Famix-Value-Types' ) ];
package: 'Famix-Value-Exporter'
with: [ spec requires: 'Famix-Value-Entities' ];
package: 'Famix-Value-Exporter-Tests'
Expand Down
6 changes: 0 additions & 6 deletions src/Famix-Value-Entities/FamixValueUnknownType.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -54,12 +54,6 @@ FamixValueUnknownType >> acceptValueVisitor: visitor forObject: object [
self error: 'Exporting an unknown type is not (yet?) supported.'
]

{ #category : #converting }
FamixValueUnknownType >> asFASTJavaTypeExpressionOn: visitor [

^ FASTJavaBuilder current referType: self
]

{ #category : #testing }
FamixValueUnknownType >> isUnknownType [

Expand Down
7 changes: 7 additions & 0 deletions src/Famix-Value-Exporter/FamixValueUnknownType.extension.st
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
Extension { #name : #FamixValueUnknownType }

{ #category : #'*Famix-Value-Exporter' }
FamixValueUnknownType >> asFASTJavaTypeExpressionOn: visitor [

^ FASTJavaBuilder current referType: self
]

0 comments on commit e51b0d8

Please sign in to comment.