Create DOCUMENT-END.
(event *yaml_event_t, implicit bool)
| 305 | |
| 306 | // Create DOCUMENT-END. |
| 307 | func yaml_document_end_event_initialize(event *yaml_event_t, implicit bool) { |
| 308 | *event = yaml_event_t{ |
| 309 | typ: yaml_DOCUMENT_END_EVENT, |
| 310 | implicit: implicit, |
| 311 | } |
| 312 | } |
| 313 | |
| 314 | // Create ALIAS. |
| 315 | func yaml_alias_event_initialize(event *yaml_event_t, anchor []byte) bool { |
no outgoing calls
no test coverage detected