Simple implementation to compare two models and return whether they are identical or not.
Metacello new
baseline: 'FamixSimpleDiff';
repository: 'github://moosetechnology/Famix-Simple-Diff:main/src';
loadmodel := '/path/to/my/model.json' asFileReference readStreamDo: [ :st | FamixJavaModel new importFromJSONStream: st ].
diff := FamixSimpleDiff new.
diff compareModel: victim to: model