mirror of
https://github.com/kyverno/kyverno.git
synced 2024-12-14 11:57:48 +00:00
dd35ae201b
Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com>
16 lines
479 B
Go
16 lines
479 B
Go
package jmespath
|
|
|
|
import (
|
|
"reflect"
|
|
)
|
|
|
|
func validateArg(f string, arguments []interface{}, index int, expectedType reflect.Kind) (reflect.Value, error) {
|
|
if index >= len(arguments) {
|
|
return reflect.Value{}, formatError(argOutOfBoundsError, f, index+1, len(arguments))
|
|
}
|
|
arg := reflect.ValueOf(arguments[index])
|
|
if arg.Type().Kind() != expectedType {
|
|
return reflect.Value{}, formatError(invalidArgumentTypeError, f, index+1, expectedType.String())
|
|
}
|
|
return arg, nil
|
|
}
|