1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
|
// From http://yaml.org/type/merge.html
// Test
anchors: {
list: [{
x: 1, y: 2
}, {
x: 0, y: 2
}, {
r: 10
}, {
r: 1
}]
}
// All the following maps are equal:
plain: {
// Explicit keys
x: 1
y: 2
r: 10
label: "center/big"
}
mergeOne: {
// Merge one map
x: 1
y: 2
r: 10
label: "center/big"
}
mergeMultiple: {
// Merge multiple maps
r: 10
x: 1
y: 2
label: "center/big"
}
override: {
// Override
r: 10
x: 1
y: 2
label: "center/big"
}
shortTag: {
// Explicit short merge tag
r: 10
x: 1
y: 2
label: "center/big"
}
longTag: {
// Explicit merge long tag
r: 10
x: 1
y: 2
label: "center/big"
}
inlineMap: {
// Inlined map
x: 1
y: 2
r: 10
label: "center/big"
}
inlineSequenceMap: {
// Inlined map in sequence
r: 10
x: 1
y: 2
label: "center/big"
}
|