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

Side by Side Diff: test/mjsunit/function.js

Issue 4248: Make sure that the body of the function created by calling Function is... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 12 years, 2 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 | Annotate | Revision Log
« no previous file with comments | « src/v8natives.js ('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 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
11 // with the distribution. 11 // with the distribution.
12 // * Neither the name of Google Inc. nor the names of its 12 // * Neither the name of Google Inc. nor the names of its
13 // contributors may be used to endorse or promote products derived 13 // contributors may be used to endorse or promote products derived
14 // from this software without specific prior written permission. 14 // from this software without specific prior written permission.
15 // 15 //
16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 17 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 18 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 19 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 20 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 21 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 22 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 23 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 27
28 var f = Function(); 28 var f = Function();
29 assertTrue(typeof f() == 'undefined'); 29 assertTrue(typeof f() == 'undefined');
30 var f = new Function(); 30 f = new Function();
31 assertTrue(typeof f() == 'undefined'); 31 assertTrue(typeof f() == 'undefined');
32 32
33 var f = Function('return 1'); 33 f = Function('return 1');
34 assertEquals(1, f()); 34 assertEquals(1, f());
35 var f = new Function('return 1'); 35 f = new Function('return 1');
36 assertEquals(1, f()); 36 assertEquals(1, f());
37 37
38 var f = Function('return true'); 38 f = Function('return true');
39 assertTrue(f()); 39 assertTrue(f());
40 var f = new Function('return true'); 40 f = new Function('return true');
41 assertTrue(f()); 41 assertTrue(f());
42 42
43 var f = Function('x', 'return x') 43 f = Function('x', 'return x');
44 assertEquals(1, f(1));
45 assertEquals('bar', f('bar'));
46 assertTrue(typeof f() == 'undefined');
47 var x = {};
48 assertTrue(x === f(x));
49 var f = new Function('x', 'return x')
50 assertEquals(1, f(1)); 44 assertEquals(1, f(1));
51 assertEquals('bar', f('bar')); 45 assertEquals('bar', f('bar'));
52 assertTrue(typeof f() == 'undefined'); 46 assertTrue(typeof f() == 'undefined');
53 var x = {}; 47 var x = {};
54 assertTrue(x === f(x)); 48 assertTrue(x === f(x));
55 49
56 var f = Function('x', 'y', 'return x+y'); 50 f = Function('x', 'return x // comment');
51 assertEquals(1, f(1));
52
53 f = Function('return typeof anonymous');
54 assertEquals('undefined', f());
55
56 var anonymous = 42;
57 f = Function('return anonymous;');
58 assertEquals(42, f());
59
60 f = new Function('x', 'return x')
61 assertEquals(1, f(1));
62 assertEquals('bar', f('bar'));
63 assertTrue(typeof f() == 'undefined');
64 var x = {};
65 assertTrue(x === f(x));
66
67 f = Function('x', 'y', 'return x+y');
57 assertEquals(5, f(2, 3)); 68 assertEquals(5, f(2, 3));
58 assertEquals('foobar', f('foo', 'bar')); 69 assertEquals('foobar', f('foo', 'bar'));
59 var f = new Function('x', 'y', 'return x+y'); 70 f = new Function('x', 'y', 'return x+y');
60 assertEquals(5, f(2, 3)); 71 assertEquals(5, f(2, 3));
61 assertEquals('foobar', f('foo', 'bar')); 72 assertEquals('foobar', f('foo', 'bar'));
62 73
63 var x = {}; x.toString = function() { return 'x'; }; 74 var x = {}; x.toString = function() { return 'x'; };
64 var y = {}; y.toString = function() { return 'y'; }; 75 var y = {}; y.toString = function() { return 'y'; };
65 var z = {}; z.toString = function() { return 'return x*y'; } 76 var z = {}; z.toString = function() { return 'return x*y'; }
66 var f = Function(x, y, z); 77 var f = Function(x, y, z);
67 assertEquals(25, f(5, 5)); 78 assertEquals(25, f(5, 5));
68 assertEquals(42, f(2, 21)); 79 assertEquals(42, f(2, 21));
69 var f = new Function(x, y, z); 80 f = new Function(x, y, z);
70 assertEquals(25, f(5, 5)); 81 assertEquals(25, f(5, 5));
71 assertEquals(42, f(2, 21)); 82 assertEquals(42, f(2, 21));
72 83
OLDNEW
« no previous file with comments | « src/v8natives.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698