summaryrefslogtreecommitdiffstats
path: root/devtools/client/debugger/test/mochitest/examples/simple2.js
blob: 40c280edfe9aca19cd2e9eea5c26a6a21a632936 (plain)
1
2
3
4
5
6
function foo(x, y) {
  function bar() {
    return x + y;
  }
  return bar;
}