blob: e22bc10167589163ff131c1d08384d1873d351f0 [file] [log] [blame]
// 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.
---*/
class C extends class {} {
constructor() {
try {
return;
} finally {
super();
}
}
}
var o = new C();
assert.sameValue(typeof o, "object");