summaryrefslogtreecommitdiff
path: root/deps/v8/test/mjsunit/compiler/promise-prototype-catch-subclass.js
blob: 5aadaada812596b4a93f8d338c6f0ba71347e767 (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 2018 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.

// Flags: --allow-natives-syntax

let custom_then_called = false;

function foo(p) {
  custom_then_called = false;
  p.catch(x => x);
  return custom_then_called;
}

class MyPromise extends Promise {
  then(onFulfilled, onRejected) {
    custom_then_called = true;
    return super.then(onFulfilled, onRejected);
  }
}

const a = MyPromise.resolve(1);

assertTrue(foo(a));
assertTrue(foo(a));
%OptimizeFunctionOnNextCall(foo);
assertTrue(foo(a));