generated from typetools/templatefora-checker
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
71cbb5f
commit 9812b94
Showing
7 changed files
with
353 additions
and
215 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 18 additions & 0 deletions
18
...a/edu/ucr/cs/riple/taint/ucrtainting/serialization/location/ClassDeclarationLocation.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
package edu.ucr.cs.riple.taint.ucrtainting.serialization.location; | ||
|
||
import com.sun.tools.javac.code.Symbol; | ||
import com.sun.tools.javac.tree.JCTree; | ||
import edu.ucr.cs.riple.taint.ucrtainting.serialization.visitors.LocationVisitor; | ||
|
||
public class ClassDeclarationLocation extends AbstractSymbolLocation{ | ||
|
||
|
||
public ClassDeclarationLocation(LocationKind kind, Symbol target, JCTree tree) { | ||
super(kind, target, tree); | ||
} | ||
|
||
@Override | ||
public <R, P> R accept(LocationVisitor<R, P> v, P p) { | ||
return null; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
21 changes: 21 additions & 0 deletions
21
...va/edu/ucr/cs/riple/taint/ucrtainting/serialization/visitors/ClassDeclarationVisitor.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
package edu.ucr.cs.riple.taint.ucrtainting.serialization.visitors; | ||
|
||
import com.sun.source.tree.Tree; | ||
import com.sun.tools.javac.util.Context; | ||
import edu.ucr.cs.riple.taint.ucrtainting.FoundRequired; | ||
import edu.ucr.cs.riple.taint.ucrtainting.UCRTaintingAnnotatedTypeFactory; | ||
import edu.ucr.cs.riple.taint.ucrtainting.serialization.Fix; | ||
import java.util.Set; | ||
|
||
public class ClassDeclarationVisitor extends SpecializedFixComputer { | ||
|
||
public ClassDeclarationVisitor( | ||
Context context, UCRTaintingAnnotatedTypeFactory typeFactory, FixComputer fixComputer) { | ||
super(context, typeFactory, fixComputer); | ||
} | ||
|
||
public Set<Fix> compute(Tree node, FoundRequired pair) { | ||
throw new RuntimeException("Not implemented"); | ||
// return Set.of(); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.