-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathAliasInvocation.java
More file actions
91 lines (77 loc) · 2.37 KB
/
AliasInvocation.java
File metadata and controls
91 lines (77 loc) · 2.37 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
package liquidjava.rj_language.ast;
import java.util.ArrayList;
import java.util.List;
import java.util.stream.Collectors;
import liquidjava.diagnostics.errors.LJError;
import liquidjava.rj_language.visitors.ExpressionVisitor;
public class AliasInvocation extends Expression {
String name;
public AliasInvocation(String name, List<Expression> args) {
this.name = name;
for (Expression e : args)
addChild(e);
}
public String getName() {
return name;
}
public List<Expression> getArgs() {
return children;
}
@Override
public <T> T accept(ExpressionVisitor<T> visitor) throws LJError {
return visitor.visitAliasInvocation(this);
}
@Override
public String toString() {
return name + "(" + getArgs().stream().map(Expression::toString).collect(Collectors.joining(", ")) + ")";
}
@Override
public void getVariableNames(List<String> toAdd) {
for (Expression e : getArgs())
e.getVariableNames(toAdd);
}
@Override
public void getStateInvocations(List<String> toAdd, List<String> all) {
for (Expression e : getArgs())
e.getStateInvocations(toAdd, all);
}
@Override
public Expression clone() {
List<Expression> le = new ArrayList<>();
for (Expression e : getArgs())
le.add(e.clone());
return new AliasInvocation(name, le);
}
@Override
public boolean isBooleanTrue() {
return false;
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + ((getArgs() == null) ? 0 : getArgs().hashCode());
result = prime * result + ((name == null) ? 0 : name.hashCode());
return result;
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
AliasInvocation other = (AliasInvocation) obj;
if (getArgs() == null) {
if (other.getArgs() != null)
return false;
} else if (!getArgs().equals(other.getArgs()))
return false;
if (name == null) {
return other.name == null;
} else {
return name.equals(other.name);
}
}
}