mirror of
https://github.com/swc-project/swc.git
synced 2024-12-29 00:23:10 +03:00
11 lines
112 B
JavaScript
11 lines
112 B
JavaScript
|
let depth = 0;
|
||
|
|
||
|
function foo(n) {
|
||
|
depth += 1;
|
||
|
let k = visit(n);
|
||
|
depth -= 1;
|
||
|
return k;
|
||
|
}
|
||
|
|
||
|
blackbox(foo);
|