File is the top-level node that results from parsing a HCL file.
| 9 | |
| 10 | // File is the top-level node that results from parsing a HCL file. |
| 11 | type File struct { |
| 12 | Body Body |
| 13 | Bytes []byte |
| 14 | |
| 15 | // Nav is used to integrate with the "hcled" editor integration package, |
| 16 | // and with diagnostic information formatters. It is not for direct use |
| 17 | // by a calling application. |
| 18 | Nav interface{} |
| 19 | } |
| 20 | |
| 21 | // Block represents a nested block within a Body. |
| 22 | type Block struct { |
nothing calls this directly
no outgoing calls
no test coverage detected