mirror of
https://github.com/google/go-jsonnet.git
synced 2026-05-05 12:06:11 +02:00
5 lines
86 B
Jsonnet
5 lines
86 B
Jsonnet
local foo = { config: [{ x: 'y' }] };
|
|
foo {
|
|
config: [super.config[0] { a: 'b' }],
|
|
}
|