mirror of
https://github.com/google/go-jsonnet.git
synced 2025-12-24 10:31: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
4 lines
101 B
Jsonnet
4 lines
101 B
Jsonnet
local bar(th, x) = if x == 0 then error "xxx" else th;
|
|
local foo(x) = bar(foo(x - 1), x - 1);
|
|
foo(3)
|