summaryrefslogtreecommitdiff
path: root/js/src/tests/test262/language/expressions/coalesce/tco-pos-undefined-strict.js
blob: 70f6ff59ec000781a7f219ce9ab747e1601446cd (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
30
// |reftest| skip -- tail-call-optimization is not supported
'use strict';
// Copyright (C) 2019 Leo Balter. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
description: Expression is a candidate for tail-call optimization.
esid: sec-static-semantics-hascallintailposition
info: |
  Expression Rules

  CoalesceExpression : CoalesceExpressionHead ?? BitwiseORExpression

  1. Return HasCallInTailPosition of BitwiseORExpression with argument call.
flags: [onlyStrict]
features: [tail-call-optimization, coalesce-expression]
includes: [tcoHelper.js]
---*/

var callCount = 0;
(function f(n) {
  if (n === 0) {
    callCount += 1
    return;
  }
  return undefined ?? f(n - 1);
}($MAX_ITERATIONS));
assert.sameValue(callCount, 1);

reportCompare(0, 0);