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

Side by Side Diff: test/mjsunit/harmony/proxies.js

Issue 12212011: Make __proto__ a foreign callback on Object.prototype. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Added regression test for issue 2441. Created 7 years, 10 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 | « test/mjsunit/harmony/object-observe.js ('k') | test/mjsunit/json.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 2276 matching lines...) Expand 10 before | Expand all | Expand 10 after
2287 2287
2288 function TestConstructorWithProxyPrototype() { 2288 function TestConstructorWithProxyPrototype() {
2289 TestWithProxies(TestConstructorWithProxyPrototype2, {}) 2289 TestWithProxies(TestConstructorWithProxyPrototype2, {})
2290 } 2290 }
2291 2291
2292 function TestConstructorWithProxyPrototype2(create, handler) { 2292 function TestConstructorWithProxyPrototype2(create, handler) {
2293 function C() {}; 2293 function C() {};
2294 C.prototype = create(handler); 2294 C.prototype = create(handler);
2295 2295
2296 var o = new C; 2296 var o = new C;
2297 assertSame(C.prototype, o.__proto__);
2298 assertSame(C.prototype, Object.getPrototypeOf(o)); 2297 assertSame(C.prototype, Object.getPrototypeOf(o));
2299 } 2298 }
2300 2299
2301 TestConstructorWithProxyPrototype(); 2300 TestConstructorWithProxyPrototype();
OLDNEW
« no previous file with comments | « test/mjsunit/harmony/object-observe.js ('k') | test/mjsunit/json.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698