gopkg.in/yaml.v2.node.kind (field)

12 uses

	gopkg.in/yaml.v2 (current package)
		decode.go#L23: 	kind         int
		decode.go#L164: 		kind:   kind,
		decode.go#L298: 	if n.tag == yaml_NULL_TAG || n.kind == scalarNode && n.tag == "" && (n.value == "null" || n.value == "~" || n.value == "" && n.implicit) {
		decode.go#L358: 	switch n.kind {
		decode.go#L368: 	switch n.kind {
		decode.go#L376: 		panic("internal error: unknown node kind: " + strconv.Itoa(n.kind))
		decode.go#L787: 	switch n.kind {
		decode.go#L791: 		if n.alias != nil && n.alias.kind != mappingNode {
		decode.go#L799: 			if ni.kind == aliasNode {
		decode.go#L800: 				if ni.alias != nil && ni.alias.kind != mappingNode {
		decode.go#L803: 			} else if ni.kind != mappingNode {
		decode.go#L814: 	return n.kind == scalarNode && n.value == "<<" && (n.implicit == true || n.tag == yaml_MERGE_TAG)