forked from LeenkxTeam/Kmake
36 lines
431 B
Plaintext
36 lines
431 B
Plaintext
Embedding script 'function c(f, ...args) { return f(...args); }'
|
|
Tests that stepping works on snapshotted function
|
|
paused
|
|
}
|
|
#debugger;
|
|
c(f, 2);
|
|
|
|
paused
|
|
debugger;
|
|
#c(f, 2);
|
|
}
|
|
|
|
paused
|
|
function c(f, ...args) { #return f(...args); }
|
|
|
|
paused
|
|
function f(x) {
|
|
#return x * 2;
|
|
}
|
|
|
|
paused
|
|
function f(x) {
|
|
return x * 2;#
|
|
}
|
|
|
|
paused
|
|
function c(f, ...args) { return f(...args);# }
|
|
|
|
paused
|
|
c(f, 2);
|
|
#}
|
|
|
|
paused
|
|
test()#
|
|
|