Sign in
webkit
/
WebKit
/
e83748a3d986d861713edbad6b20589c06c9b99f
/
.
/
JSTests
/
stress
/
promise-infinite-recursion-should-not-crash.js
blob: cb261f9c5aa140b6baa12ce9d5f71c1c45063881 [
file
] [
log
] [
blame
]
//@ defaultNoSamplingProfilerRun
// This should not crash
var
boundFunc
;
function
testPromise
(
func
)
{
var
p1
=
new
Promise
(
func
);
}
function
promiseFunc
(
resolve
,
reject
)
{
boundFunc
();
}
boundFunc
=
testPromise
.
bind
(
null
,
promiseFunc
);
boundFunc
();