| OLD | NEW |
| 1 // Copyright 2015 the V8 project authors. All rights reserved. | 1 // Copyright 2015 the V8 project authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 // Flags: --harmony-classes --harmony-sloppy | 5 // Flags: --harmony-sloppy |
| 6 | 6 |
| 7 | 7 |
| 8 (function Method() { | 8 (function Method() { |
| 9 class C { | 9 class C { |
| 10 eval() { | 10 eval() { |
| 11 return 1; | 11 return 1; |
| 12 } | 12 } |
| 13 arguments() { | 13 arguments() { |
| 14 return 2; | 14 return 2; |
| 15 } | 15 } |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 | 70 |
| 71 new C().eval = 1; | 71 new C().eval = 1; |
| 72 assertEquals(1, x); | 72 assertEquals(1, x); |
| 73 new C().arguments = 2; | 73 new C().arguments = 2; |
| 74 assertEquals(2, x); | 74 assertEquals(2, x); |
| 75 C.eval = 3; | 75 C.eval = 3; |
| 76 assertEquals(3, x); | 76 assertEquals(3, x); |
| 77 C.arguments = 4; | 77 C.arguments = 4; |
| 78 assertEquals(4, x); | 78 assertEquals(4, x); |
| 79 })(); | 79 })(); |
| OLD | NEW |