mirror of
https://github.com/swc-project/swc.git
synced 2024-12-18 11:11:30 +03:00
14 lines
165 B
JavaScript
14 lines
165 B
JavaScript
function a() {
|
|
if (b) return;
|
|
c();
|
|
d();
|
|
}
|
|
function e() {
|
|
if (b) return;
|
|
if (c) return;
|
|
if (d) return;
|
|
if (f) return;
|
|
g();
|
|
h();
|
|
}
|