| 138 | */ |
| 139 | |
| 140 | static int |
| 141 | yaml_parser_set_composer_error(yaml_parser_t *parser, |
| 142 | const char *problem, yaml_mark_t problem_mark) |
| 143 | { |
| 144 | parser->error = YAML_COMPOSER_ERROR; |
| 145 | parser->problem = problem; |
| 146 | parser->problem_mark = problem_mark; |
| 147 | |
| 148 | return 0; |
| 149 | } |
| 150 | |
| 151 | /* |
| 152 | * Set composer error with context. |
no outgoing calls
no test coverage detected