mdfeist / TypeV

Apache License 2.0
0 stars 0 forks source link

Get Class Edited in Each Commit #3

Open mdfeist opened 8 years ago

eddieantonio commented 8 years ago

@mdfeist Could you describe this issue a bit more? Right now I don't exactly understand what you mean. In fact, if it's what I think, this is already done (in JavaScript, you can iterate by commit, and get the set of types changed in the commit).

mdfeist commented 8 years ago

Example:

class MyClass {
+    private MyType t;

}

Currently:

#DECLARE | INSERT | MyType | 1

What I want:

#DECLARE | INSERT | MyType | 1
#EDIT | INSERT | MyClass | 1

Therefore we can see what types are being changed. (Their functionality is changing.) So currently we are only looking at external changes (declarations and invocations). But I want to add internal changes as well.

eddieantonio commented 8 years ago

Ah, yes! This is very important!