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