OLD | NEW |
1 // Copyright 2016 the V8 project authors. All rights reserved. | 1 // Copyright 2016 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 // | |
5 // Flags: --harmony-function-name | |
6 | 4 |
7 var obj = { | 5 "use strict"; |
8 get longerName(){ | 6 |
9 return 42; | 7 class Test { |
| 8 m() { |
| 9 super.length = 10; |
10 } | 10 } |
11 }; | 11 } |
12 assertEquals(42, obj.longerName); | 12 |
| 13 var array = []; |
| 14 Test.prototype.m.call(array); |
| 15 assertEquals(10, array.length); |
OLD | NEW |