summaryrefslogtreecommitdiffstats
path: root/third_party/webkit/PerformanceTests/six-speed/tests/defaults.es6
blob: 1df8fdeb0161f882bea3ea8781e997e347b1a418 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
function fn(arg = 1, other = 3) {
  return other;
}


assertEqual(fn(), 3);
assertEqual(fn(1, 2), 2);

test(function() {
  fn();
  fn(2);
  fn(2, 4);
});