Files returns a map from filenames to the File objects produced from them. This is intended to be used, for example, to print diagnostics with contextual information. The returned map and all of the objects it refers to directly or indirectly must not be modified.
()
| 134 | // The returned map and all of the objects it refers to directly or indirectly |
| 135 | // must not be modified. |
| 136 | func (p *Parser) Files() map[string]*hcl.File { |
| 137 | return p.files |
| 138 | } |