()
| 23 | } |
| 24 | |
| 25 | func (this *Rule) LookupSetName() string { |
| 26 | for _, e := range this.rawRule.Exprs { |
| 27 | exp, ok := e.(*expr.Lookup) |
| 28 | if ok { |
| 29 | return exp.SetName |
| 30 | } |
| 31 | } |
| 32 | return "" |
| 33 | } |
| 34 | |
| 35 | func (this *Rule) VerDict() expr.VerdictKind { |
| 36 | for _, e := range this.rawRule.Exprs { |
no outgoing calls