| 670 | } |
| 671 | |
| 672 | type LogicalConstraint struct { |
| 673 | Op string `json:"op"` // "and", "or", "xor", "not" |
| 674 | A *Constraint `json:"a"` |
| 675 | B *Constraint `json:"b"` // only valid if Op != "not" |
| 676 | } |
| 677 | |
| 678 | // PermanodeConstraint matches permanodes. |
| 679 | type PermanodeConstraint struct { |
nothing calls this directly
no outgoing calls
no test coverage detected