gopkg.in/yaml.v2.parser.parser (field)
16 uses
gopkg.in/yaml.v2 (current package)
decode.go#L38: parser yaml_parser_t
decode.go#L46: if !yaml_parser_initialize(&p.parser) {
decode.go#L52: yaml_parser_set_input_string(&p.parser, b)
decode.go#L58: if !yaml_parser_initialize(&p.parser) {
decode.go#L61: yaml_parser_set_input_reader(&p.parser, r)
decode.go#L77: yaml_parser_delete(&p.parser)
decode.go#L84: if !yaml_parser_parse(&p.parser, &p.event) {
decode.go#L92: p.parser.problem = fmt.Sprintf("expected %s event but got %s", e, p.event.typ)
decode.go#L105: if !yaml_parser_parse(&p.parser, &p.event) {
decode.go#L114: if p.parser.problem_mark.line != 0 {
decode.go#L115: line = p.parser.problem_mark.line
decode.go#L117: if p.parser.error == yaml_SCANNER_ERROR {
decode.go#L120: } else if p.parser.context_mark.line != 0 {
decode.go#L121: line = p.parser.context_mark.line
decode.go#L127: if len(p.parser.problem) > 0 {
decode.go#L128: msg = p.parser.problem
![]() |
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. |