summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/language/statements/class/subclass/builtin-objects/Object/constructor-returns-non-object.js
blob: 6f266cc1e74fd9b33ac74bef36cc3411dc1196af (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
// Copyright (C) 2016 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
es6id: 9.2.2
description: The Type of the return value must be an Object
info: |
  9.2.2 [[Construct]] ( argumentsList, newTarget)

  ...
  11. Let result be OrdinaryCallEvaluateBody(F, argumentsList).
  ...
  13. If result.[[type]] is return, then
    a. If Type(result.[[value]]) is Object, return
    NormalCompletion(result.[[value]]).
    ...
    c. If result.[[value]] is not undefined, throw a TypeError exception.
  ...

  6.1.7.2 Object Internal Methods and Internal Slots

  ...
  If any specified use of an internal method of an exotic object is not
  supported by an implementation, that usage must throw a TypeError exception
  when attempted.

  6.1.7.3 Invariants of the Essential Internal Methods

  [[Construct]] ( )
    - The Type of the return value must be Object.
---*/

class Obj extends Object {
  constructor() {
    return 42;
  }
}

assert.throws(TypeError, function() {
  var obj = new Obj();
});

reportCompare(0, 0);