(form exprForm)
| 438 | } |
| 439 | |
| 440 | func (m *outerStoreMatcher) addOwnerForm(form exprForm) { |
| 441 | if form.text == "" || containsExprForm(m.ownerForms, form) { |
| 442 | return |
| 443 | } |
| 444 | m.ownerForms = append(m.ownerForms, form) |
| 445 | } |
| 446 | |
| 447 | func (m *outerStoreMatcher) addStoreForm(form exprForm) { |
| 448 | if form.text == "" || containsExprForm(m.storeForms, form) { |
no test coverage detected