Sign in
webkit
/
WebKit
/
f6013b2d8a67a21431419ad45d183d56cb11b105
/
.
/
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
();