NetEscapades.Configuration icon indicating copy to clipboard operation
NetEscapades.Configuration copied to clipboard

Merge references are not correctly handled

Open cobalthex opened this issue 4 years ago • 0 comments

---
defaults: &defaults
  A: 1
  B: 2
mapping:
  << : *defaults
  A: 23
  C: 99

should parse as

mapping.A = 23
mapping.B = 2
mapping.C = 99

but instead parses as

mapping.<<.A = 1
mapping.<<.B = 2
mapping.A = 23
mapping.C = 99

cobalthex avatar Apr 19 '21 07:04 cobalthex