forked from DetachHead/rebased
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathField.java
More file actions
41 lines (32 loc) · 636 Bytes
/
Copy pathField.java
File metadata and controls
41 lines (32 loc) · 636 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
public class Test {
int a;
Test() {
this.field = 0;
}
private int getInteger(int num) {
return num;
}
private int runTest(){
boolean localVar = true;
for(int forLoopVariable = 0; forLoopVariable < 0; ++forLoopVariable){
localVar += 1;
if (localVar) {
int nestedIfVar = 0;
}
}
while(localVar){
boolean whileVariable = true;
localVar = false;
}
if(true){
int ifVar = 5;
}
else{
int elseVar = 7;
}
ArrayList<String> list = new ArrayList();
for(String forEachVar: list){
}
get<caret>Integer(2 + field);
}
}