For example:
one: &a
a: 1
two: &b
<<: *a
b: 2
three:
<<: *b
c: 3
should produce:
{
"one": {
"a": 1
},
"two": {
"a": 1,
"b": 2
},
"three": {
"a": 1,
"b": 2,
"c": 3
}
}
but instead, produces:
{
"one": {
"a": 1
},
"two": {
"a": 1,
"b": 2
},
"three": {
"<<": {
"a": 1
},
"b": 2,
"c": 3
}
}
For example:
should produce:
{ "one": { "a": 1 }, "two": { "a": 1, "b": 2 }, "three": { "a": 1, "b": 2, "c": 3 } }but instead, produces:
{ "one": { "a": 1 }, "two": { "a": 1, "b": 2 }, "three": { "<<": { "a": 1 }, "b": 2, "c": 3 } }