keith_miller@apple.com | bcc77f2 | 2016-07-15 06:03:25 +0000 | [diff] [blame] | 1 | // Copyright (C) 2015 the V8 project authors. All rights reserved. |
2 | // This code is governed by the BSD license found in the LICENSE file. | ||||
3 | /*--- | ||||
4 | es6id: 14.5.1 | ||||
5 | description: > | ||||
6 | ClassElement : static MethodDefinition | ||||
7 | |||||
8 | It is a Syntax Error if HasDirectSuper of MethodDefinition is true. | ||||
9 | |||||
10 | (get) | ||||
11 | |||||
12 | negative: SyntaxError | ||||
13 | ---*/ | ||||
14 | class A { | ||||
15 | static get method() { | ||||
16 | super(); | ||||
17 | } | ||||
18 | } | ||||
19 |