mirror of
https://github.com/google/go-jsonnet.git
synced 2025-12-24 18:41:07 +01:00
48 lines
1.3 KiB
Plaintext
48 lines
1.3 KiB
Plaintext
RUNTIME ERROR: xxx
|
|
-------------------------------------------------
|
|
testdata/recursive_thunk:1:35-46 function <bar>
|
|
|
|
local bar(th, x) = if x == 0 then error "xxx" else th;
|
|
|
|
-------------------------------------------------
|
|
testdata/recursive_thunk:2:16-38 function <foo>
|
|
|
|
local foo(x) = bar(foo(x - 1), x - 1);
|
|
|
|
-------------------------------------------------
|
|
testdata/recursive_thunk:2:20-30 thunk from <function <foo>>
|
|
|
|
local foo(x) = bar(foo(x - 1), x - 1);
|
|
|
|
-------------------------------------------------
|
|
testdata/recursive_thunk:1:52-54 function <bar>
|
|
|
|
local bar(th, x) = if x == 0 then error "xxx" else th;
|
|
|
|
-------------------------------------------------
|
|
... (skipped 1 frames)
|
|
-------------------------------------------------
|
|
testdata/recursive_thunk:2:20-30 thunk from <function <foo>>
|
|
|
|
local foo(x) = bar(foo(x - 1), x - 1);
|
|
|
|
-------------------------------------------------
|
|
testdata/recursive_thunk:1:52-54 function <bar>
|
|
|
|
local bar(th, x) = if x == 0 then error "xxx" else th;
|
|
|
|
-------------------------------------------------
|
|
testdata/recursive_thunk:2:16-38 function <foo>
|
|
|
|
local foo(x) = bar(foo(x - 1), x - 1);
|
|
|
|
-------------------------------------------------
|
|
testdata/recursive_thunk:3:1-7 $
|
|
|
|
foo(3)
|
|
|
|
-------------------------------------------------
|
|
During evaluation
|
|
|
|
|