EvaluationResult

data class EvaluationResult(val fulfillingNodes: MutableList<Node> = mutableListOf(), val unfulfillingNodes: MutableList<Node> = mutableListOf(), val problems: CpgWheneverEvaluator.Problems = Problems())(source)

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.

Constructors

Link copied to clipboard
constructor(fulfillingNodes: Nodes, unfulfillingNodes: Nodes, problems: CpgWheneverEvaluator.Problems)
constructor(fulfillingNodes: MutableList<Node> = mutableListOf(), unfulfillingNodes: MutableList<Node> = mutableListOf(), problems: CpgWheneverEvaluator.Problems = Problems())

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard