summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/auto-regress/bug562028.js
blob: 4f64431c0bdeeb064669310e107a39c28cdff38e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// |jit-test| skip-if: !this.uneval

// Binary: cache/js-dbg-64-0723bab9f15d-linux
// Flags:
//
function f(code) {
  uneval(Function(code.replace(/\/\*DUPTRY\d+/,
    function(k) {
      n = k.substr(8)
      return g("try{}catch(e){}", n)
    }
  )))
}
function g(s, n) {
  if (n == 1) return s
  s2 = s + s
  r = n % 2
  d = (n - r) / 2;
  m = g(s2, d)
  return r ? m: m
}
f("if(/>/(\"\")){/*DUPTRY4968(u)}else if([]()){}")