This commit is contained in:
Alexander Wang 2024-06-01 23:12:30 -07:00
parent f15f0e9ab9
commit abc03ae616
No known key found for this signature in database
GPG key ID: BE3937D0D52D8927

View file

@ -2518,6 +2518,38 @@ x -> a.b -> a.b.c
# hi
style.stroke: green
}
`,
},
{
name: "scenario-grandchild",
text: `a -> b
scenarios: {
x: {
scenarios: {
c: {
(a -> b)[0].style.bold: true
}
}
}
}
`,
key: `(a -> b)[0].style.stroke-width`,
value: go2.Pointer(`3`),
boardPath: []string{"x", "c"},
exp: `a -> b
scenarios: {
x: {
scenarios: {
c: {
(a -> b)[0].style.bold: true
(a -> b)[0].style.stroke-width: 3
}
}
}
}
`,
},
}