Skip to content

Commit

Permalink
Java export: Implement reflection
Browse files Browse the repository at this point in the history
Remove stub handling artifacts: stub handling never worked and was removed, but there was still leftover code
  • Loading branch information
Gabriel-Darbord committed Aug 5, 2024
1 parent d7d6461 commit 9e5d905
Show file tree
Hide file tree
Showing 3 changed files with 392 additions and 75 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
Extension { #name : #FamixValueOfObject }

{ #category : #'*Famix-Value-Entities-Extensions' }
FamixValueOfObject >> constructorSignature [

^ String streamContents: [ :s |
s << self type name << '('.
value
do: [ :attribute | s << attribute attribute declaredType name ]
separatedBy: [ s nextPut: $, ].
s nextPut: $) ]
]

{ #category : #'*Famix-Value-Entities-Extensions' }
FamixValueOfObject >> containsCollection [

Expand Down
Loading

0 comments on commit 9e5d905

Please sign in to comment.