git://git.webkit.org
/
WebKit-https.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
DFG::LazyJSValue::tryGetStringImpl() crashes for empty values
[WebKit-https.git]
/
Source
/
JavaScriptCore
/
tests
/
stress
/
strcat-emtpy.js
1
function foo() {
2
"use strict";
3
let a = "hello" + a;
4
return a;
5
}
6
7
noInline(foo);
8
9
for (var i = 0; i < 10000; ++i) {
10
try {
11
foo();
12
} catch (e) {
13
}
14
}