jrsonnet
refs/commits
6e67554e1625
tests/suite/function_context.jsonnet
1local k = {2 t(name=self.h): [self.h, name],3 h: 3,4};5local f = {6 t: k.t(),7 h: 4,8};9std.assertEqual(f.t[0], f.t[1]) &&10true