Set the reader error and return 0.
(parser *yaml_parser_t, problem string, offset int, value int)
| 28 | |
| 29 | // Set the reader error and return 0. |
| 30 | func yaml_parser_set_reader_error(parser *yaml_parser_t, problem string, offset int, value int) bool { |
| 31 | parser.error = yaml_READER_ERROR |
| 32 | parser.problem = problem |
| 33 | parser.problem_offset = offset |
| 34 | parser.problem_value = value |
| 35 | return false |
| 36 | } |
| 37 | |
| 38 | // Byte order marks. |
| 39 | const ( |
no outgoing calls
no test coverage detected
searching dependent graphs…