mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
IDEA-243019 Unroll loop: get loop size from dataflow
GitOrigin-RevId: 0ba4a16c098414fcb539502446b6cd138922f398
This commit is contained in:
committed by
intellij-monorepo-bot
parent
7bef713cfd
commit
c180e2cec5
+14
@@ -0,0 +1,14 @@
|
||||
// "Unroll loop" "true"
|
||||
import java.util.Arrays;
|
||||
|
||||
class X {
|
||||
void testLoop(int size) {
|
||||
if (size == 5) {
|
||||
System.out.println(0);
|
||||
System.out.println(1);
|
||||
System.out.println(2);
|
||||
System.out.println(3);
|
||||
System.out.println(4);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user