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

Side by Side Diff: test/mjsunit/regress/regress-115452.js

Issue 10067010: Implement ES5 erratum: global declarations shadow inherited properties. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 years, 8 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
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 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
31 function foobl() {} 31 function foobl() {}
32 assertTrue(typeof this.foobl == "function"); 32 assertTrue(typeof this.foobl == "function");
33 assertTrue(Object.getOwnPropertyDescriptor(this, "foobl").writable); 33 assertTrue(Object.getOwnPropertyDescriptor(this, "foobl").writable);
34 34
35 print(1) 35 print(1)
36 Object.defineProperty(this, "foobl", {value: 1, writable: false}); 36 Object.defineProperty(this, "foobl", {value: 1, writable: false});
37 assertSame(1, this.foobl); 37 assertSame(1, this.foobl);
38 assertFalse(Object.getOwnPropertyDescriptor(this, "foobl").writable); 38 assertFalse(Object.getOwnPropertyDescriptor(this, "foobl").writable);
39 39
40 print(2) 40 print(2)
41 eval("function foobl() {}"); 41 try {
42 eval("function foobl() {}"); // Should throw.
43 assertUnreachable();
44 } catch (e) {
45 assertInstanceof(e, TypeError);
46 }
42 assertSame(1, this.foobl); 47 assertSame(1, this.foobl);
43 assertFalse(Object.getOwnPropertyDescriptor(this, "foobl").writable);
44
45 print(3)
46 eval("function foobl() {}");
47 assertSame(1, this.foobl);
48 assertFalse(Object.getOwnPropertyDescriptor(this, "foobl").writable);
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698