git://git.webkit.org
/
WebKit-https.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
PropertyAttribute needs a CustomValue bit.
[WebKit-https.git]
/
JSTests
/
stress
/
regress-191993.js
1
function foo(o) {
2
return o.r.input;
3
}
4
noInline(foo);
5
6
Object.assign({}, RegExp);
7
8
for (let i = 0; i < 10000; i++)
9
foo({r: RegExp});
10
11
let input = foo({r: RegExp});
12
if (typeof input !== "string")
13
throw "FAILED";