mirror of
https://github.com/HappyTanuki/BumbleCee.git
synced 2025-12-19 05:33:28 +00:00
스킵 구현
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
void foo() {
|
||||
if (a == b) {
|
||||
c();
|
||||
} else {
|
||||
d();
|
||||
}
|
||||
|
||||
while (true) {
|
||||
// ...
|
||||
}
|
||||
|
||||
switch (a) {
|
||||
case 1:
|
||||
c();
|
||||
break;
|
||||
case 2:
|
||||
d();
|
||||
break;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user