git.delta.rocks / jrsonnet / refs/heads / master

difftreelog

source

tests/suite/function_context.jsonnet132 Bsourcehistory
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