comparison: js/src/jit-test/tests/jaeger/fromCharCode.js
js/src/jit-test/tests/jaeger/fromCharCode.js
- changeset 0
- 6474c204b198
equal
deleted
inserted
replaced
|
1 /* |
|
2 * Any copyright is dedicated to the Public Domain. |
|
3 * http://creativecommons.org/licenses/publicdomain/ |
|
4 */ |
|
5 |
|
6 for (var i = 0; i <= 0xFFFF; i++) { |
|
7 assertEq(String.fromCharCode(i).charCodeAt(0), i); |
|
8 } |