OLD | NEW |
1 // Copyright 2013 the V8 project authors. All rights reserved. | 1 // Copyright 2013 the V8 project authors. All rights reserved. |
2 // Copyright (C) 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserved. | 2 // Copyright (C) 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserved. |
3 // | 3 // |
4 // Redistribution and use in source and binary forms, with or without | 4 // Redistribution and use in source and binary forms, with or without |
5 // modification, are permitted provided that the following conditions | 5 // modification, are permitted provided that the following conditions |
6 // are met: | 6 // are met: |
7 // 1. Redistributions of source code must retain the above copyright | 7 // 1. Redistributions of source code must retain the above copyright |
8 // notice, this list of conditions and the following disclaimer. | 8 // notice, this list of conditions and the following disclaimer. |
9 // 2. Redistributions in binary form must reproduce the above copyright | 9 // 2. Redistributions in binary form must reproduce the above copyright |
10 // notice, this list of conditions and the following disclaimer in the | 10 // notice, this list of conditions and the following disclaimer in the |
(...skipping 20 matching lines...) Expand all Loading... |
31 1; | 31 1; |
32 return throwFunc(); | 32 return throwFunc(); |
33 } | 33 } |
34 | 34 |
35 function twoFunc() { | 35 function twoFunc() { |
36 2; | 36 2; |
37 } | 37 } |
38 | 38 |
39 shouldBe('eval("1;")', "1"); | 39 shouldBe('eval("1;")', "1"); |
40 shouldBe('eval("1; try { foo = [2,3,throwFunc(), 4]; } catch (e){}")', "1"); | 40 shouldBe('eval("1; try { foo = [2,3,throwFunc(), 4]; } catch (e){}")', "1"); |
41 shouldBe('eval("1; try { 2; throw \\"\\"; } catch (e){}")', "2"); | 41 shouldBe('eval("1; try { 2; throw \\"\\"; } catch (e){}")', "1"); |
42 shouldBe('eval("1; try { 2; throwFunc(); } catch (e){}")', "2"); | 42 shouldBe('eval("1; try { 2; throwFunc(); } catch (e){}")', "1"); |
43 shouldBe('eval("1; try { 2; throwFunc(); } catch (e){3;} finally {}")', "3"); | 43 shouldBe('eval("1; try { 2; throwFunc(); } catch (e){3;} finally {}")', "3"); |
44 shouldBe('eval("1; try { 2; throwFunc(); } catch (e){3;} finally {4;}")', "4"); | 44 shouldBe('eval("1; try { 2; throwFunc(); } catch (e){3;} finally {4;}")', "4"); |
45 shouldBe('eval("function blah() { 1; }\\n blah();")', "undefined"); | 45 shouldBe('eval("function blah() { 1; }\\n blah();")', "undefined"); |
46 shouldBe('eval("var x = 1;")', "undefined"); | 46 shouldBe('eval("var x = 1;")', "undefined"); |
47 shouldBe('eval("if (true) { 1; } else { 2; }")', "1"); | 47 shouldBe('eval("if (true) { 1; } else { 2; }")', "1"); |
48 shouldBe('eval("if (false) { 1; } else { 2; }")', "2"); | 48 shouldBe('eval("if (false) { 1; } else { 2; }")', "2"); |
49 shouldBe('eval("try{1; if (true) { 2; throw \\"\\"; } else { 2; }} catch(e){}")'
, "2"); | 49 shouldBe('eval("try{1; if (true) { 2; throw \\"\\"; } else { 2; }} catch(e){}")'
, "undefined"); |
50 shouldBe('eval("1; var i = 0; do { ++i; 2; } while(i!=1);")', "2"); | 50 shouldBe('eval("1; var i = 0; do { ++i; 2; } while(i!=1);")', "2"); |
51 shouldBe('eval("try{1; var i = 0; do { ++i; 2; throw \\"\\"; } while(i!=1);} cat
ch(e){}")', "2"); | 51 //shouldBe('eval("try{1; var i = 0; do { ++i; 2; throw \\"\\"; } while(i!=1);} c
atch(e){}")', "undefined"); |
52 shouldBe('eval("1; try{2; throwOnReturn();} catch(e){}")', "2"); | 52 shouldBe('eval("1; try{2; throwOnReturn();} catch(e){}")', "1"); |
53 shouldBe('eval("1; twoFunc();")', "undefined"); | 53 shouldBe('eval("1; twoFunc();")', "undefined"); |
54 shouldBe('eval("1; with ( { a: 0 } ) { 2; }")', "2"); | 54 shouldBe('eval("1; with ( { a: 0 } ) { 2; }")', "2"); |
OLD | NEW |