次のjsonnetがあります。
{
local property = "global variable",
property: "global property",
bar: self.property, // global property
baz: property, // global variable
nested: {
local property = "local variable",
property: "local property",
bar: self.property, // local property
baz: property, // local variable
// Q1:
// Can I get the property of parent from here? In my case:
// property: "global property"
// I want to use some kind of relative addressing, from child to parent not other way like:
// $.property
// I've tried:
// super.property
// but got errors
// Q2:
// Can I get the name of the key in which this block is wrapped? In my case:
// "nested"
}
}
私の目標は、子から親にアクセスすることです。質問は、コンテキストの理解を深めるためにコメントに記載されています。ありがとう