(
private readonly host: Tree,
private readonly path: string,
)
| 29 | private eol: string; |
| 30 | |
| 31 | constructor( |
| 32 | private readonly host: Tree, |
| 33 | private readonly path: string, |
| 34 | ) { |
| 35 | this.content = this.host.readText(this.path); |
| 36 | this.eol = getEOL(this.content); |
| 37 | } |
| 38 | |
| 39 | private _jsonAst: Node | undefined; |
| 40 | private get JsonAst(): Node | undefined { |