Matches returns the list of matches associated with the rule.
()
| 53 | |
| 54 | // Matches returns the list of matches associated with the rule. |
| 55 | func (r *CompiledRule) Matches() []*CompiledMatch { |
| 56 | return r.matches[:] |
| 57 | } |
| 58 | |
| 59 | // OutputType returns the output type of the first match clause as all match clauses |
| 60 | // are validated for agreement prior to construction fo the CompiledRule. |
no outgoing calls
no test coverage detected