aboutsummaryrefslogtreecommitdiff
path: root/deps/v8/test/mjsunit/regress/regress-6711.js
blob: c1b61c72a1d7b6784f737f1e4dc43f868d0fe384 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Copyright 2019 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

// ensure `delete this` throws before `super` is called.
assertThrows(()=>{
  new class extends Object {
    constructor() {
      delete this;
      super();
    }
  }
}, ReferenceError);

// ensure `delete this` doesn't throw after `super` is called.
new class extends Object {
  constructor() {
    super();
    delete this;
  }
}