Sign in
webkit
/
WebKit
/
e27614df2f37ba9cd62de8344bb8d5b7377411af
/
.
/
JSTests
/
microbenchmarks
/
string-from-char-code.js
blob: 0a5a36e2df7b13ffa2105e918f5c1fe5b9c9eac1 [
file
] [
log
] [
blame
]
var
result
=
(
function
()
{
var
result
;
for
(
var
i
=
0
;
i
<
10000000
;
++
i
)
result
=
String
.
fromCharCode
(
32
);
return
result
})();
if
(
result
!=
" "
)
throw
"Error: bad result: "
+
result
;