summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/language/statements/class/definition/fn-length-static-precedence-order.js
blob: ec6501c61f8bcb0529674d94556f155dca4cb4c1 (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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
// Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
esid: sec-runtime-semantics-classdefinitionevaluation
description: >
    Function `length` attribute not inferred in presence of static `length` method
info: |
    ClassTail : ClassHeritage_opt { ClassBody_opt }

    14. If constructor is empty, then [...]
      b. Let F be ! CreateBuiltinFunction(steps, 0, className, « [[ConstructorKind]], [[SourceText]] », empty, constructorParent).
    15. Else,
      a. Let constructorInfo be ! DefineMethod of constructor with arguments proto and constructorParent.
         [ This sets the length property on constructorInfo.[[Closure]]. ]
      b. Let F be constructorInfo.[[Closure]].
      [...]
    25. For each ClassElement e of elements, do
      a. If IsStatic of e is false, then [...]
      b. Else,
        i. Let field be ClassElementEvaluation of e with arguments F and false.
           [ This overwrites the length property on F. ]
includes: [compareArray.js]
features: [generators]
---*/

class A {
  static method() {
    throw new Test262Error('Static method should not be executed during definition');
  }
  static length() {
    throw new Test262Error('Static method should not be executed during definition');
  }
}

assert.compareArray(Object.getOwnPropertyNames(A), ['length', 'name', 'prototype', 'method'])

var attr = 'length';
class B {
  static [attr]() {
    throw new Test262Error(
      'Static method defined via computed property should not be executed ' +
      'during definition'
    );
  }
}

assert.compareArray(Object.getOwnPropertyNames(B), ['length', 'name', 'prototype'])

class C {
  static get length() {
    throw new Test262Error('Static `get` accessor should not be executed during definition');
  }
}

assert.compareArray(Object.getOwnPropertyNames(C), ['length', 'name', 'prototype'])

class D {
  static set length(_) {
    throw new Test262Error('Static `set` accessor should not be executed during definition');
  }
}

assert.compareArray(Object.getOwnPropertyNames(D), ['length', 'name', 'prototype'])

class E {
  static *length() {
    throw new Test262Error('Static GeneratorMethod should not be executed during definition');
  }
}

assert.compareArray(Object.getOwnPropertyNames(E), ['length', 'name', 'prototype'])

reportCompare(0, 0);