| package differ | |
| // NestingMode is a wrapper around a string type to describe the various | |
| // different kinds of nesting modes that can be applied to nested blocks and | |
| // objects. | |
| type NestingMode string | |
| const ( | |
| nestingModeSet NestingMode = "set" | |
| nestingModeList NestingMode = "list" | |
| nestingModeMap NestingMode = "map" | |
| nestingModeSingle NestingMode = "single" | |
| nestingModeGroup NestingMode = "group" | |
| ) |