Blame vendor/github.com/jmespath/go-jmespath/astnodetype_string.go

Packit Service 4d2de5
// generated by stringer -type astNodeType; DO NOT EDIT
Packit Service 4d2de5
Packit Service 4d2de5
package jmespath
Packit Service 4d2de5
Packit Service 4d2de5
import "fmt"
Packit Service 4d2de5
Packit Service 4d2de5
const _astNodeType_name = "ASTEmptyASTComparatorASTCurrentNodeASTExpRefASTFunctionExpressionASTFieldASTFilterProjectionASTFlattenASTIdentityASTIndexASTIndexExpressionASTKeyValPairASTLiteralASTMultiSelectHashASTMultiSelectListASTOrExpressionASTAndExpressionASTNotExpressionASTPipeASTProjectionASTSubexpressionASTSliceASTValueProjection"
Packit Service 4d2de5
Packit Service 4d2de5
var _astNodeType_index = [...]uint16{0, 8, 21, 35, 44, 65, 73, 92, 102, 113, 121, 139, 152, 162, 180, 198, 213, 229, 245, 252, 265, 281, 289, 307}
Packit Service 4d2de5
Packit Service 4d2de5
func (i astNodeType) String() string {
Packit Service 4d2de5
	if i < 0 || i >= astNodeType(len(_astNodeType_index)-1) {
Packit Service 4d2de5
		return fmt.Sprintf("astNodeType(%d)", i)
Packit Service 4d2de5
	}
Packit Service 4d2de5
	return _astNodeType_name[_astNodeType_index[i]:_astNodeType_index[i+1]]
Packit Service 4d2de5
}