(a *Constraint)
| 70 | } |
| 71 | |
| 72 | func notConst(a *Constraint) *Constraint { |
| 73 | return &Constraint{ |
| 74 | Logical: &LogicalConstraint{ |
| 75 | Op: "not", |
| 76 | A: a, |
| 77 | }, |
| 78 | } |
| 79 | } |
| 80 | |
| 81 | type parser struct { |
| 82 | tokens chan token |
no outgoing calls
no test coverage detected