| 615 | // Update the Rule struct to match the parser |
| 616 | #[derive(Debug)] |
| 617 | struct Rule { |
| 618 | name: String, |
| 619 | patterns: Vec<Pattern>, |
| 620 | compute_clauses: Option<Vec<ComputeClause>>, |
| 621 | inference_type: InferenceType, |
| 622 | inferences: Vec<Inference>, |
| 623 | } |
| 624 | |
| 625 | // Main parser function |
| 626 | #[derive(Debug)] |
no outgoing calls
no test coverage detected