summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/language/statements/class/elements/fields-computed-name-static-propname-prototype.js
blob: 5fba6d2d6c0d084a94aee3c68431028abbaabfa0 (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
// Copyright (C) 2017 Valerie Young. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
description: static class fields forbid PropName 'prototype' (no early error -- PropName of ComputedPropertyName)
esid: sec-class-definitions-static-semantics-early-errors
features: [class, class-static-fields-public]
info: |
  14.6.13 Runtime Semantics: ClassDefinitionEvaluation

  ...
  16. Perform MakeConstructor(F, false, proto).
  ...

  9.2.10 MakeConstructor ( F [ , writablePrototype [ , prototype ] ] )

  6. Perform ! DefinePropertyOrThrow(F, "prototype", PropertyDescriptor { [[Value]]: prototype,
    [[Writable]]: writablePrototype, [[Enumerable]]: false, [[Configurable]]: false }).
---*/

assert.throws(TypeError, function() {
  class C {
    static ['prototype'] = 42;
  }
});

assert.throws(TypeError, function() {
  class C {
    static ['prototype'];
  }
});

reportCompare(0, 0);