summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/language/statements/class/subclass/derived-class-return-override-finally-super-arrow.js
blob: b0b7246055d3b4384860e073c1b34d50683cf757 (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
// 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 try block. The `super()` call is performed
  through an arrow function.
---*/

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

    try {
      return;
    } finally {
      f();
    }
  }
}

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

reportCompare(0, 0);