summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/language/statements/class/syntax/class-declaration-heritage-identifier-reference-class-element-list.js
blob: ddfca89cc9d305620a6c04083f668a6abe06d68b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
// Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
es6id: 14.5
description: >
    ClassHeritage[Yield] :
      extends LeftHandSideExpression[?Yield]

    LeftHandSideExpression :
      NewExpression
      ...

    NewExpression :
      MemberExpression
      ...

    MemberExpression :
      PrimaryExpression
      ...

    PrimaryExpression :
      IdentifierReference
      ...

    ClassDeclaration:
      class BindingIdentifier ClassTail

    ClassTail:
      ... { ClassBodyopt }

    ClassBody[Yield] :
      ClassElementList[?Yield]


    ClassElementList[Yield] :
      ClassElement[?Yield]
      ClassElementList[?Yield] ClassElement[?Yield]

    ClassElement[Yield] :
      MethodDefinition[?Yield]
      static MethodDefinition[?Yield]
      ;

---*/
class A {}
class B extends A {
  method() {}
  static method() {}
  ;
}

assert.sameValue(typeof B, "function");
assert.sameValue(typeof B.prototype.method, "function");
assert.sameValue(typeof B.method, "function");

reportCompare(0, 0);