feat(aa): add rule constructors from internal parser.
This commit is contained in:
parent
ac9d6d859f
commit
163c5be61c
19 changed files with 456 additions and 75 deletions
|
|
@ -12,6 +12,10 @@ type All struct {
|
|||
RuleBase
|
||||
}
|
||||
|
||||
func newAll(q Qualifier, rule rule) (Rule, error) {
|
||||
return &All{RuleBase: newBase(rule)}, nil
|
||||
}
|
||||
|
||||
func (r *All) Validate() error {
|
||||
return nil
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue