gopkg.in/yaml.v2.parser.event (field)

24 uses

	gopkg.in/yaml.v2 (current package)
		decode.go#L39: 	event    yaml_event_t
		decode.go#L74: 	if p.event.typ != yaml_NO_EVENT {
		decode.go#L75: 		yaml_event_delete(&p.event)
		decode.go#L83: 	if p.event.typ == yaml_NO_EVENT {
		decode.go#L84: 		if !yaml_parser_parse(&p.parser, &p.event) {
		decode.go#L88: 	if p.event.typ == yaml_STREAM_END_EVENT {
		decode.go#L91: 	if p.event.typ != e {
		decode.go#L92: 		p.parser.problem = fmt.Sprintf("expected %s event but got %s", e, p.event.typ)
		decode.go#L95: 	yaml_event_delete(&p.event)
		decode.go#L96: 	p.event.typ = yaml_NO_EVENT
		decode.go#L102: 	if p.event.typ != yaml_NO_EVENT {
		decode.go#L103: 		return p.event.typ
		decode.go#L105: 	if !yaml_parser_parse(&p.parser, &p.event) {
		decode.go#L108: 	return p.event.typ
		decode.go#L158: 		panic("attempted to parse unknown event: " + p.event.typ.String())
		decode.go#L165: 		line:   p.event.start_mark.line,
		decode.go#L166: 		column: p.event.start_mark.column,
		decode.go#L182: 	n.value = string(p.event.anchor)
		decode.go#L193: 	n.value = string(p.event.value)
		decode.go#L194: 	n.tag = string(p.event.tag)
		decode.go#L195: 	n.implicit = p.event.implicit
		decode.go#L196: 	p.anchor(n, p.event.anchor)
		decode.go#L203: 	p.anchor(n, p.event.anchor)
		decode.go#L214: 	p.anchor(n, p.event.anchor)