Add Gradle build setup and updated analyzer files

This commit is contained in:
Nicolas Amaya
2025-10-26 21:28:55 -06:00
parent 82249f76ae
commit 1157885d92
11 changed files with 525 additions and 31 deletions

View File

@@ -0,0 +1,27 @@
public class Test {
public void methodOne() {
class Helper234 {
int val = 1;
int compute() {
for (int i = 0; i < 10; i++) {
val += 1;
if (val == 5) {
val = 5;
} else if (val < 5) {
val = 3;
}
}
return val;
}
}
// Example of using Helper234 inside methodOne
Helper234 helper = new Helper234();
int result = helper.compute();
System.out.println("Result: " + result);
}
void methodTwo() {
System.out.println("Hello");
}
}