From 42803b3daf9b4e7b8a3a73cc2293d9469ee2975e Mon Sep 17 00:00:00 2001 From: Markus Schmidt Date: Fri, 15 Sep 2023 12:33:12 +0200 Subject: [PATCH] add comment --- .../src/main/java/sootup/core/model/SourceType.java | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/sootup.core/src/main/java/sootup/core/model/SourceType.java b/sootup.core/src/main/java/sootup/core/model/SourceType.java index 1aba39958c4..ebf48269c1a 100644 --- a/sootup.core/src/main/java/sootup/core/model/SourceType.java +++ b/sootup.core/src/main/java/sootup/core/model/SourceType.java @@ -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 }