mirror of
https://github.com/google/go-jsonnet.git
synced 2025-12-25 02:51:05 +01:00
* Location, error formatting and stack trace improvements * Static context for AST nodes * Thunks no longer need `name` * Prototype for showing snippets in error messages (old format still available) * Use ast.Function to represent methods and local function sugar. * Change tests so that the error output is pretty
2 lines
105 B
Jsonnet
2 lines
105 B
Jsonnet
{ local x = self, y:: x, z: 42, foo: "xxx" } { local x = super.y, foo: x.z, bar: x.foo, baz: super.foo }
|