comparison: browser/devtools/debugger/test/code_blackboxing_blackboxme.js
browser/devtools/debugger/test/code_blackboxing_blackboxme.js
- branch
- TOR_BUG_9701
- changeset 15
- b8a032363ba2
equal
deleted
inserted
replaced
|
1 function blackboxme(fn) { |
|
2 (function one() { |
|
3 (function two() { |
|
4 (function three() { |
|
5 fn(); |
|
6 }()); |
|
7 }()); |
|
8 }()); |
|
9 } |