| 151 | */ |
| 152 | |
| 153 | static int |
| 154 | yaml_parser_set_composer_error_context(yaml_parser_t *parser, |
| 155 | const char *context, yaml_mark_t context_mark, |
| 156 | const char *problem, yaml_mark_t problem_mark) |
| 157 | { |
| 158 | parser->error = YAML_COMPOSER_ERROR; |
| 159 | parser->context = context; |
| 160 | parser->context_mark = context_mark; |
| 161 | parser->problem = problem; |
| 162 | parser->problem_mark = problem_mark; |
| 163 | |
| 164 | return 0; |
| 165 | } |
| 166 | |
| 167 | /* |
| 168 | * Delete the stack of aliases. |
no outgoing calls
no test coverage detected