// this script was compiled with wurst 1.8.1.0-jenkins-Wurst-1366 globals integer array Blub_nextFree integer Blub_firstFree=0 integer Blub_maxIndex=0 integer array Blub_typeId integer array A_nextFree integer A_firstFree=0 integer A_maxIndex=0 integer array A_typeId integer array B_nextFree integer B_firstFree=0 integer B_maxIndex=0 integer array A_x integer array B_x integer wurst_stack_depth=0 string array wurst_stack endglobals native testSuccess takes nothing returns nothing function initGlobals takes nothing returns nothing endfunction function error takes string msg, string w__wurst_stackPos returns nothing local integer stacktraceIndex local integer stacktraceLimit set wurst_stack[wurst_stack_depth] = w__wurst_stackPos set wurst_stack_depth = wurst_stack_depth + 1 set w__wurst_stackPos = "" set stacktraceIndex = wurst_stack_depth set stacktraceLimit = 0 loop set stacktraceIndex = stacktraceIndex - 1 set stacktraceLimit = stacktraceLimit + 1 exitwhen stacktraceLimit > 20 or stacktraceIndex < 0 set w__wurst_stackPos = w__wurst_stackPos + "\n " + wurst_stack[stacktraceIndex] endloop call BJDebugMsg(msg + "\n" + w__wurst_stackPos) set wurst_stack_depth = wurst_stack_depth - 1 endfunction function new_B takes integer x, string w__wurst_stackPos returns integer local integer this set wurst_stack[wurst_stack_depth] = w__wurst_stackPos set wurst_stack_depth = wurst_stack_depth + 1 set wurst_stack[wurst_stack_depth] = "when calling alloc_B in closureWithGenerics, line 16" set wurst_stack_depth = wurst_stack_depth + 1 if B_firstFree == 0 then if B_maxIndex < 32768 then set B_maxIndex = B_maxIndex + 1 set this = B_maxIndex else call error("Out of memory: Could not create B.", "when calling error in closureWithGenerics, line 14") set this = 0 endif else set B_firstFree = B_firstFree - 1 set this = B_nextFree[B_firstFree] endif set wurst_stack_depth = wurst_stack_depth - 1 set B_x[this] = x set wurst_stack_depth = wurst_stack_depth - 1 return this endfunction function dispatch_Blub_test_Blub_foo takes integer this, integer t, integer s, string w__wurst_stackPos returns integer set wurst_stack[wurst_stack_depth] = w__wurst_stackPos set wurst_stack_depth = wurst_stack_depth + 1 if Blub_typeId[this] == 0 then if this == 0 then call error("Nullpointer exception when calling Blub.foo", "when calling error in closureWithGenerics, line 4") else call error("Called Blub.foo on invalid object.", "when calling error in closureWithGenerics, line 4") endif endif set wurst_stack[wurst_stack_depth] = "when calling foo_callMe_test in closureWithGenerics, line 4" set wurst_stack_depth = wurst_stack_depth + 1 set wurst_stack[wurst_stack_depth] = "when calling foo in closureWithGenerics, line 19" set wurst_stack_depth = wurst_stack_depth + 1 if A_typeId[t] == 0 then if t == 0 then call error("Nullpointer exception when calling A.foo", "when calling error in closureWithGenerics, line 12") else call error("Called A.foo on invalid object.", "when calling error in closureWithGenerics, line 12") endif endif set wurst_stack[wurst_stack_depth] = "when calling foo in closureWithGenerics, line 12" set wurst_stack_depth = wurst_stack_depth + 1 set this = new_B(A_x[t] + B_x[s], "when calling new_B in closureWithGenerics, line 13") set wurst_stack_depth = wurst_stack_depth - 1 - 1 - 1 - 1 return this endfunction function new_A takes integer x, string w__wurst_stackPos returns integer local integer this set wurst_stack[wurst_stack_depth] = w__wurst_stackPos set wurst_stack_depth = wurst_stack_depth + 1 set wurst_stack[wurst_stack_depth] = "when calling alloc_A in closureWithGenerics, line 10" set wurst_stack_depth = wurst_stack_depth + 1 if A_firstFree == 0 then if A_maxIndex < 32768 then set A_maxIndex = A_maxIndex + 1 set this = A_maxIndex set A_typeId[this] = 1 else call error("Out of memory: Could not create A.", "when calling error in closureWithGenerics, line 8") set this = 0 endif else set A_firstFree = A_firstFree - 1 set this = A_nextFree[A_firstFree] set A_typeId[this] = 1 endif set wurst_stack_depth = wurst_stack_depth - 1 set A_x[this] = x set wurst_stack_depth = wurst_stack_depth - 1 return this endfunction function init_test takes string w__wurst_stackPos returns nothing local integer temp local integer temp_1 local integer this local integer stackTrace_tempReturn set wurst_stack[wurst_stack_depth] = w__wurst_stackPos set wurst_stack_depth = wurst_stack_depth + 1 set temp = new_A(3, "when calling new_A in closureWithGenerics, line 19") set temp_1 = new_B(4, "when calling new_B in closureWithGenerics, line 19") set wurst_stack[wurst_stack_depth] = "when calling alloc_Blub_callMe_test in closureWithGenerics, line 19" set wurst_stack_depth = wurst_stack_depth + 1 if Blub_firstFree == 0 then if Blub_maxIndex < 32768 then set Blub_maxIndex = Blub_maxIndex + 1 set this = Blub_maxIndex set Blub_typeId[this] = 4 else call error("Out of memory: Could not create Blub_callMe_test.", "when calling error in closureWithGenerics, line 19") set this = 0 endif else set Blub_firstFree = Blub_firstFree - 1 set this = Blub_nextFree[Blub_firstFree] set Blub_typeId[this] = 4 endif set wurst_stack_depth = wurst_stack_depth - 1 set wurst_stack[wurst_stack_depth] = "when calling callMe in closureWithGenerics, line 19" set wurst_stack_depth = wurst_stack_depth + 1 set stackTrace_tempReturn = dispatch_Blub_test_Blub_foo(this, temp, dispatch_Blub_test_Blub_foo(this, temp, temp_1, "when calling foo in closureWithGenerics, line 6"), "when calling foo in closureWithGenerics, line 7") set wurst_stack_depth = wurst_stack_depth - 1 if B_x[stackTrace_tempReturn] == 10 then call testSuccess() endif set wurst_stack_depth = wurst_stack_depth - 1 endfunction function main takes nothing returns nothing call initGlobals() call init_test("when calling init_test in closureWithGenerics, line 1") endfunction function config takes nothing returns nothing endfunction