OLD | NEW |
1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2011 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 20 matching lines...) Expand all Loading... |
31 __proto__.__defineSetter__("x", function() { hasBeenInvoked = true; }); | 31 __proto__.__defineSetter__("x", function() { hasBeenInvoked = true; }); |
32 __proto__.__defineSetter__("y", function() { throw 'exception'; }); | 32 __proto__.__defineSetter__("y", function() { throw 'exception'; }); |
33 | 33 |
34 var hasBeenInvoked = false; | 34 var hasBeenInvoked = false; |
35 eval("try { } catch (e) { var x = false; }"); | 35 eval("try { } catch (e) { var x = false; }"); |
36 assertTrue(hasBeenInvoked); | 36 assertTrue(hasBeenInvoked); |
37 | 37 |
38 var exception; | 38 var exception; |
39 try { | 39 try { |
40 eval("try { } catch (e) { var y = false; }"); | 40 eval("try { } catch (e) { var y = false; }"); |
41 assertUnreachable(); | |
42 } catch (e) { | 41 } catch (e) { |
43 exception = e; | 42 exception = e; |
44 } | 43 } |
45 assertEquals('exception', exception); | 44 assertEquals('exception', exception); |
OLD | NEW |