CpgWheneverEvaluator
Types
Link copied to clipboard
data class EvaluationResult(val fulfillingNodes: MutableList<Node> = mutableListOf(), val unfulfillingNodes: MutableList<Node> = mutableListOf(), val problems: CpgWheneverEvaluator.Problems = Problems())
A class to collect the results of the evaluation of a ConditionNode. fulfillingNodes contains all nodes that fulfill the ConditionNode, unfulfillingNodes contains all nodes that do not fulfill the ConditionNode, problems are the problems encountered in the evaluation.