Welcome to mirror list, hosted at ThFree Co, Russian Federation.

logical-assignment.js « harmony « mjsunit « test « v8 « deps - github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 92153547c2ea4926a08ce29ac1e41f96a502ca55 (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
31
32
33
34
35
36
37
38
39
40
41
42
// Copyright 2020 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: --harmony-logical-assignment

{
  let x = null;
  let y = 0;
  x ??= y ||= 5;

  assertEquals(x, 5);
  assertEquals(y, 5);
}


{
  let x = null;
  let y = 4;
  x ??= y ||= 5;

  assertEquals(x, 4);
  assertEquals(y, 4);
}

{
  let x = 1;
  let y = 0;
  x &&= y ||= 5;

  assertEquals(x, 5);
  assertEquals(y, 5);
}

{
  let x = 0;
  let y = 0;
  x &&= y ||= 5;

  assertEquals(x, 0);
  assertEquals(y, 0);
}