mirror of
https://github.com/google/go-jsonnet.git
synced 2025-12-28 04:21:44 +01:00
5 lines
86 B
Jsonnet
5 lines
86 B
Jsonnet
local foo = { config: [{ x: 'y' }] };
|
|
foo {
|
|
config: [super.config[0] { a: 'b' }],
|
|
}
|