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