public static class PurityChecker.PurityResult extends Object
PurityChecker. Can be queried regarding whether a given tree was
side-effect-free, deterministic, or both; also gives reasons if the answer is "no".| Modifier and Type | Field and Description |
|---|---|
protected List<Pair<Tree,String>> |
notBothReasons |
protected List<Pair<Tree,String>> |
notDetReasons |
protected List<Pair<Tree,String>> |
notSeFreeReasons |
protected EnumSet<Pure.Kind> |
types |
| Constructor and Description |
|---|
PurityResult() |
| Modifier and Type | Method and Description |
|---|---|
void |
addNotBothReason(Tree t,
String msgId)
Add
reason as a reason why the method is not both side-effect free and
deterministic. |
void |
addNotDetReason(Tree t,
String msgId)
Add
reason as a reason why the method is not deterministic. |
void |
addNotSeFreeReason(Tree t,
String msgId)
Add
reason as a reason why the method is not side-effect free. |
List<Pair<Tree,String>> |
getNotBothReasons()
Get the
reasons why the method is not both side-effect-free and deterministic. |
List<Pair<Tree,String>> |
getNotDetReasons()
Get the
reasons why the method is not deterministic. |
List<Pair<Tree,String>> |
getNotSeFreeReasons()
Get the
reasons why the method is not side-effect-free. |
EnumSet<Pure.Kind> |
getTypes() |
boolean |
isPure(Collection<Pure.Kind> kinds)
Is the method pure w.r.t.
|
public boolean isPure(Collection<Pure.Kind> kinds)
public List<Pair<Tree,String>> getNotSeFreeReasons()
reasons why the method is not side-effect-free.public void addNotSeFreeReason(Tree t, String msgId)
reason as a reason why the method is not side-effect free.public List<Pair<Tree,String>> getNotDetReasons()
reasons why the method is not deterministic.public void addNotDetReason(Tree t, String msgId)
reason as a reason why the method is not deterministic.public List<Pair<Tree,String>> getNotBothReasons()
reasons why the method is not both side-effect-free and deterministic.