(&mut self, context: Context)
| 12 | |
| 13 | pub trait Evaluator { |
| 14 | fn preprocess(&mut self, context: Context) -> Result<()> { |
| 15 | context.check_finalized()?; |
| 16 | for graph in context.get_graphs() { |
| 17 | for node in graph.get_nodes() { |
| 18 | node.get_type()?; |
| 19 | } |
| 20 | } |
| 21 | Ok(()) |
| 22 | } |
| 23 | |
| 24 | fn evaluate_node(&mut self, node: Node, dependencies_values: Vec<Value>) -> Result<Value>; |
| 25 |
no test coverage detected