Compare commits

..

No commits in common. "9b8155ebab61ce6ad53930d7d3035e1ac584f491" and "d925a3258c9280460b255e5388fa29b270f7009d" have entirely different histories.

2 changed files with 12 additions and 16 deletions

View File

@ -614,7 +614,7 @@ public class SemanticAnalyzer implements SemanticVisitor {
start++;
}
}
if(context.getClasses().get(memberAccessNode.identifiers.getFirst()) == null){
if(context.getClasses().get(memberAccessNode.identifiers.getFirst()) != null){
memberAccessNode.identifiers.addFirst(currentClass.identifier);
start++;
}
@ -635,8 +635,7 @@ public class SemanticAnalyzer implements SemanticVisitor {
} else {
if (currentType instanceof ReferenceType reference) {
var currentTypeClass = context.getClass(reference.getIdentifier());
memberAccessNode.identifiers.add(i, reference.getIdentifier());
i++;
var currentField = currentTypeClass.getField(s);
if (currentField.getAccessModifier().accessType == EnumAccessModifierNode.PUBLIC) {
currentType = currentField.getType();

View File

@ -1,16 +1,13 @@
public class Compiler {
Node node;
public int add(int i, int j) {
node = new Node();
node.x = 1;
return i+j;
}
}
public class Klasse1 {
public int test;
public class Node {
public int x;
public void main() {
Compiler compiler = new Compiler();
int i = compiler.add(5, 8);
public int test1() {
test = 5;
return 1;
}
public void test2() {
int testInt;
testInt = this.test1();
}
}