Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(92)

Side by Side Diff: test/mjsunit/es6/symbols.js

Issue 1125783002: [es6] When comparing two symbols we may need to throw a TypeError (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/x87/code-stubs-x87.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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();
OLDNEW
« no previous file with comments | « src/x87/code-stubs-x87.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698