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)
![]() |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |