Set parser error.
(parser *yaml_parser_t, problem string, problem_mark yaml_mark_t)
| 131 | |
| 132 | // Set parser error. |
| 133 | func yaml_parser_set_parser_error(parser *yaml_parser_t, problem string, problem_mark yaml_mark_t) bool { |
| 134 | parser.error = yaml_PARSER_ERROR |
| 135 | parser.problem = problem |
| 136 | parser.problem_mark = problem_mark |
| 137 | return false |
| 138 | } |
| 139 | |
| 140 | func yaml_parser_set_parser_error_context(parser *yaml_parser_t, context string, context_mark yaml_mark_t, problem string, problem_mark yaml_mark_t) bool { |
| 141 | parser.error = yaml_PARSER_ERROR |
no outgoing calls
no test coverage detected