MakeMapping returns a pointer to a new yaml mapping node
()
| 377 | |
| 378 | // MakeMapping returns a pointer to a new yaml mapping node |
| 379 | func MakeMapping() *yaml.Node { |
| 380 | return &yaml.Node{ |
| 381 | Kind: yaml.MappingNode, |
| 382 | Content: make([]*yaml.Node, 0), |
| 383 | } |
| 384 | } |
| 385 | |
| 386 | const ( |
| 387 | Ref string = "Ref" |
no outgoing calls
no test coverage detected