summaryrefslogtreecommitdiff
path: root/deps/v8/tools/clusterfuzz/js_fuzzer/test_data/mutation_order/input.js
blob: b58810985be8494eac35bb829254036299de8efb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Copyright 2022 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.

var i = 1;
var j = 'str';
var k = undefined;
var l = {0: 1};

function foo(a, b) {
  return a + b;
}

foo(i, 3);

function bar(a) {
  return foo(a, a);
}

foo('foo', j);
bar(2, foo(i, j));
foo(i, j);
bar(j, 3);