()
| 33 | } |
| 34 | |
| 35 | func (this *Rule) VerDict() expr.VerdictKind { |
| 36 | for _, e := range this.rawRule.Exprs { |
| 37 | exp, ok := e.(*expr.Verdict) |
| 38 | if ok { |
| 39 | return exp.Kind |
| 40 | } |
| 41 | } |
| 42 | |
| 43 | return -100 |
| 44 | } |
| 45 | |
| 46 | func (this *Rule) Handle() uint64 { |
| 47 | return this.rawRule.Handle |
no outgoing calls