(collectionNature Nature, vars ...varScope)
| 946 | } |
| 947 | |
| 948 | func (v *Checker) begin(collectionNature Nature, vars ...varScope) { |
| 949 | v.predicateScopes = append(v.predicateScopes, predicateScope{ |
| 950 | collection: collectionNature, |
| 951 | vars: vars, |
| 952 | }) |
| 953 | } |
| 954 | |
| 955 | func (v *Checker) end() { |
| 956 | v.predicateScopes = v.predicateScopes[:len(v.predicateScopes)-1] |
no outgoing calls
no test coverage detected