summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/language/statements/class/subclass/derived-class-return-override-catch-finally-arrow.js
blob: f2bebd31f5fa837d817170cd7a4732c937faef12 (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
// Copyright (C) 2021 André Bargull. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
esid: sec-ecmascript-function-objects-construct-argumentslist-newtarget
description: >
  `super()` in finally block is executed before checking for missing `super()`
  call when `return` is in a catch block. The `super()` call is performed
  through an arrow function.
---*/

class C extends class {} {
  constructor() {
    var f = () => super();

    try {
      throw null;
    } catch(e) {
      return;
    } finally {
      f();
    }
  }
}

var o = new C();
assert.sameValue(typeof o, "object");

reportCompare(0, 0);