chore: upgrade coredns version (#550)

This commit is contained in:
naison
2025-04-19 10:06:56 +08:00
committed by GitHub
parent c42e3475f9
commit c9f1ce6522
1701 changed files with 235209 additions and 29271 deletions

68
vendor/github.com/expr-lang/expr/optimizer/in_array.go generated vendored Normal file
View File

@@ -0,0 +1,68 @@
package optimizer
import (
"reflect"
. "github.com/expr-lang/expr/ast"
)
type inArray struct{}
func (*inArray) Visit(node *Node) {
switch n := (*node).(type) {
case *BinaryNode:
if n.Operator == "in" {
if array, ok := n.Right.(*ArrayNode); ok {
if len(array.Nodes) > 0 {
t := n.Left.Type()
if t == nil || t.Kind() != reflect.Int {
// This optimization can be only performed if left side is int type,
// as runtime.in func uses reflect.Map.MapIndex and keys of map must,
// be same as checked value type.
goto string
}
for _, a := range array.Nodes {
if _, ok := a.(*IntegerNode); !ok {
goto string
}
}
{
value := make(map[int]struct{})
for _, a := range array.Nodes {
value[a.(*IntegerNode).Value] = struct{}{}
}
m := &ConstantNode{Value: value}
m.SetType(reflect.TypeOf(value))
patchCopyType(node, &BinaryNode{
Operator: n.Operator,
Left: n.Left,
Right: m,
})
}
string:
for _, a := range array.Nodes {
if _, ok := a.(*StringNode); !ok {
return
}
}
{
value := make(map[string]struct{})
for _, a := range array.Nodes {
value[a.(*StringNode).Value] = struct{}{}
}
m := &ConstantNode{Value: value}
m.SetType(reflect.TypeOf(value))
patchCopyType(node, &BinaryNode{
Operator: n.Operator,
Left: n.Left,
Right: m,
})
}
}
}
}
}
}