(globals map[string]interface{}, block Node)
| 66 | } |
| 67 | |
| 68 | func NewMap(globals map[string]interface{}, block Node) *Map { |
| 69 | return &Map{Globals: globals, Block: block} |
| 70 | } |
| 71 | |
| 72 | // AllowUnknown makes config.Map skip unknown configuration directives instead |
| 73 | // of failing. |
no outgoing calls