summaryrefslogtreecommitdiffstats
path: root/devtools/client/debugger/test/mochitest/code_blackboxing_blackboxme.js
blob: 713b3d50d89d45c607ad1ee4f3d819b029ee8a91 (plain)
1
2
3
4
5
6
7
8
9
function blackboxme(fn) {
  (function one() {
    (function two() {
      (function three() {
        fn();
      }());
    }());
  }());
}