Create MAPPING-START.
(event *yaml_event_t, anchor, tag []byte, implicit bool, style yaml_mapping_style_t)
| 356 | |
| 357 | // Create MAPPING-START. |
| 358 | func yaml_mapping_start_event_initialize(event *yaml_event_t, anchor, tag []byte, implicit bool, style yaml_mapping_style_t) { |
| 359 | *event = yaml_event_t{ |
| 360 | typ: yaml_MAPPING_START_EVENT, |
| 361 | anchor: anchor, |
| 362 | tag: tag, |
| 363 | implicit: implicit, |
| 364 | style: yaml_style_t(style), |
| 365 | } |
| 366 | } |
| 367 | |
| 368 | // Create MAPPING-END. |
| 369 | func yaml_mapping_end_event_initialize(event *yaml_event_t) { |
no test coverage detected