summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/annexB/language/statements/class/subclass/superclass-emulates-undefined.js
blob: 245e7d402b6cb6bd60c89d894b9758b50c6b6fba (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
// Copyright (C) 2020 Alexey Shvayka. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-runtime-semantics-classdefinitionevaluation
description: >
  [[IsHTMLDDA]] object as superclass: `null` check uses strict equality.
  IsConstructor check is performed before "prototype" lookup.
info: |
  ClassDefinitionEvaluation

  [...]
  5. Else,
    [...]
    d. Let superclass be ? GetValue(superclassRef).
    e. If superclass is null, then
      [...]
    f. Else if IsConstructor(superclass) is false, throw a TypeError exception.
features: [class, IsHTMLDDA]
---*/

var superclass = $262.IsHTMLDDA;
var prototypeGets = 0;
Object.defineProperty(superclass, "prototype", {
  get: function() {
    prototypeGets += 1;
  },
});

assert.throws(TypeError, function() {
  class C extends superclass {}
});

assert.sameValue(prototypeGets, 0);

reportCompare(0, 0);