(parser *yaml_parser_t, context string, context_mark yaml_mark_t, problem string, problem_mark yaml_mark_t)
| 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 |
| 142 | parser.context = context |
| 143 | parser.context_mark = context_mark |
| 144 | parser.problem = problem |
| 145 | parser.problem_mark = problem_mark |
| 146 | return false |
| 147 | } |
| 148 | |
| 149 | // State dispatcher. |
| 150 | func yaml_parser_state_machine(parser *yaml_parser_t, event *yaml_event_t) bool { |
no outgoing calls
no test coverage detected