Skip to content

Commit

Permalink
add comment
Browse files Browse the repository at this point in the history
  • Loading branch information
swissiety committed Sep 15, 2023
1 parent 543bde6 commit 42803b3
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions sootup.core/src/main/java/sootup/core/model/SourceType.java
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,10 @@
*/

public enum SourceType {
Phantom,
Application,
Library
Phantom, // in soot: code that we have no access to and only can assume the class layout.. TODO:
// which seems to makes no sense anymore as we now reference indirectly to SootClasses
// and dont need a "catch all" Phantom SootClass?
Application, // code that we want to analyze e.g. in call graph generation its traversed
Library // code that is given but should not be analyzed e.g. in call graph generation its not
// traversed
}

0 comments on commit 42803b3

Please sign in to comment.