-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
17526ce
commit 25cc359
Showing
5 changed files
with
41 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
28 changes: 28 additions & 0 deletions
28
src/Famix-Value-Exporter/FamixValueAbstractObjectExportStrategy.class.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
Class { | ||
#name : #FamixValueAbstractObjectExportStrategy, | ||
#superclass : #Object, | ||
#category : #'Famix-Value-Exporter-Strategies' | ||
} | ||
|
||
{ #category : #testing } | ||
FamixValueAbstractObjectExportStrategy class >> isAbstract [ | ||
|
||
^ self == FamixValueAbstractObjectExportStrategy | ||
] | ||
|
||
{ #category : #ast } | ||
FamixValueAbstractObjectExportStrategy >> addToHelper: helperClass [ | ||
"Hook to add strategy specifics to the helper class. By default, do nothing." | ||
] | ||
|
||
{ #category : #ast } | ||
FamixValueAbstractObjectExportStrategy >> dependencyImportsOn: aFASTModel [ | ||
|
||
^ { } | ||
] | ||
|
||
{ #category : #exporting } | ||
FamixValueAbstractObjectExportStrategy >> export: object on: visitor [ | ||
|
||
self subclassResponsibility | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
...xValueObjectInlineExportStrategy.class.st → ...xValueInlineObjectExportStrategy.class.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
28 changes: 0 additions & 28 deletions
28
src/Famix-Value-Exporter/FamixValueObjectExportStrategy.class.st
This file was deleted.
Oops, something went wrong.