git://git.webkit.org
/
WebKit-https.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Inlining of a function that ends in op_unreachable crashes
[WebKit-https.git]
/
JSTests
/
stress
/
inlining-unreachable.js
1
var bar = class Bar { };
2
var baz = class Baz {
3
constructor() { bar(); }
4
};
5
for (var i = 0; i < 10000; i++) {
6
try {
7
new baz();
8
} catch (e) {}
9
}