()
| 186 | |
| 187 | func (ms *mapSource) String() string { return fmt.Sprintf("map source %[1]q", ms.name) } |
| 188 | func (ms *mapSource) GoString() string { |
| 189 | return fmt.Sprintf("&mapSource{name:%[1]q}", ms.name) |
| 190 | } |
| 191 | |
| 192 | // Lookup returns a value from the map source. The lookup name may be a dot-separated path into the map. |
| 193 | // If that is the case, it will recursively traverse the map based on the '.' delimited sections to find |