public merge()

in script/lib/variable-collection.ts [61:67]


  public merge(other: VariableCollection) {
    for (const modeVar of other.flattened()) {
      if (!this.data.has(modeVar.name)) {
        this.add(modeVar.path, modeVar.value)
      }
    }
  }