summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/annexB/language/statements/class/subclass/superclass-prototype-emulates-undefined.js
blob: 542dbb07567fdd188637e1b512fa02befe7bf8ab (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
// 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 "prototype" of superclass: `null` check uses strict equality.
info: |
  ClassDefinitionEvaluation

  [...]
  5. Else,
    [...]
    g. Else,
      i. Let protoParent be ? Get(superclass, "prototype").
      ii. If Type(protoParent) is neither Object nor Null, throw a TypeError exception.
      iii. Let constructorParent be superclass.
  6. Let proto be OrdinaryObjectCreate(protoParent).
  [...]
features: [class, IsHTMLDDA]
---*/

function Superclass() {}
Superclass.prototype = $262.IsHTMLDDA;

class C extends Superclass {}
var c = new C();

assert(c instanceof C);
assert(c instanceof Superclass);

reportCompare(0, 0);