Fix Double Name
This commit is contained in:
parent
d925a3258c
commit
2e3a7850a4
@ -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++;
|
||||
}
|
||||
|
@ -1,13 +1,16 @@
|
||||
public class Klasse1 {
|
||||
public int test;
|
||||
|
||||
public int test1() {
|
||||
test = 5;
|
||||
return 1;
|
||||
public class Compiler {
|
||||
Node node;
|
||||
public int add(int i, int j) {
|
||||
node = new Node();
|
||||
node.x = 1;
|
||||
return i+j;
|
||||
}
|
||||
}
|
||||
|
||||
public void test2() {
|
||||
int testInt;
|
||||
testInt = this.test1();
|
||||
public class Node {
|
||||
public int x;
|
||||
public void main() {
|
||||
Compiler compiler = new Compiler();
|
||||
int i = compiler.add(5, 8);
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user