Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2008 the V8 project authors. All rights reserved. | 1 // Copyright 2008 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 17 matching lines...) Expand all Loading... | |
| 28 assertTrue(!x && typeof x == 'undefined'); | 28 assertTrue(!x && typeof x == 'undefined'); |
| 29 assertTrue(!y && typeof y == 'undefined'); | 29 assertTrue(!y && typeof y == 'undefined'); |
| 30 if (false) { var x = 42; } | 30 if (false) { var x = 42; } |
| 31 if (true) { var y = 87; } | 31 if (true) { var y = 87; } |
| 32 assertTrue(!x && typeof x == 'undefined'); | 32 assertTrue(!x && typeof x == 'undefined'); |
| 33 assertEquals(87, y); | 33 assertEquals(87, y); |
| 34 | 34 |
| 35 assertTrue(!z && typeof z == 'undefined'); | 35 assertTrue(!z && typeof z == 'undefined'); |
| 36 if (false) { var z; } | 36 if (false) { var z; } |
| 37 assertTrue(!z && typeof z == 'undefined'); | 37 assertTrue(!z && typeof z == 'undefined'); |
| 38 | |
| 39 assertThrows("var \u2E2F;", SyntaxError); | |
| 40 assertThrows("var \\u2E2F;", SyntaxError); | |
|
mathias
2014/10/08 13:55:46
Maybe add the tests from https://codereview.chromi
| |
| OLD | NEW |