OLD | NEW |
1 // Copyright 2013 the V8 project authors. All rights reserved. | 1 // Copyright 2013 the V8 project authors. All rights reserved. |
2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
4 // met: | 4 // met: |
5 // | 5 // |
6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
(...skipping 486 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
497 } | 497 } |
498 TestRegistry() | 498 TestRegistry() |
499 | 499 |
500 | 500 |
501 function TestGetOwnPropertySymbolsOnPrimitives() { | 501 function TestGetOwnPropertySymbolsOnPrimitives() { |
502 assertEquals(Object.getOwnPropertySymbols(true), []); | 502 assertEquals(Object.getOwnPropertySymbols(true), []); |
503 assertEquals(Object.getOwnPropertySymbols(5000), []); | 503 assertEquals(Object.getOwnPropertySymbols(5000), []); |
504 assertEquals(Object.getOwnPropertySymbols("OK"), []); | 504 assertEquals(Object.getOwnPropertySymbols("OK"), []); |
505 } | 505 } |
506 TestGetOwnPropertySymbolsOnPrimitives(); | 506 TestGetOwnPropertySymbolsOnPrimitives(); |
| 507 |
| 508 |
| 509 function TestComparison() { |
| 510 function f() { |
| 511 var a = Symbol(); |
| 512 a < a; |
| 513 a > a; |
| 514 a <= a; |
| 515 a >= a; |
| 516 } |
| 517 |
| 518 assertThrows(f, TypeError); |
| 519 %OptimizeFunctionOnNextCall(f); |
| 520 assertThrows(f, TypeError); |
| 521 assertThrows(f, TypeError); |
| 522 |
| 523 function g() { |
| 524 var a = Symbol(); |
| 525 var b = Symbol(); |
| 526 a < b; |
| 527 a > b; |
| 528 a <= b; |
| 529 a >= b; |
| 530 } |
| 531 assertThrows(g, TypeError); |
| 532 %OptimizeFunctionOnNextCall(g); |
| 533 assertThrows(g, TypeError); |
| 534 assertThrows(g, TypeError); |
| 535 } |
| 536 TestComparison(); |
OLD | NEW |