private unresolvedTree()

in script/lib/variable-collection.ts [99:107]


  private unresolvedTree(): Readonly<Record<string, any>> {
    let output = {} as Record<string, any>

    for (const variable of this.data.values()) {
      set(output, variable.path, variable.value)
    }

    return output
  }