org.snapscript.tree.define.MemberFieldReference Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of snap Show documentation
Show all versions of snap Show documentation
Dynamic scripting for the JVM
package org.snapscript.tree.define;
import org.snapscript.core.ModifierType;
import org.snapscript.core.scope.Scope;
import org.snapscript.core.type.Type;
import org.snapscript.tree.NameReference;
import org.snapscript.tree.literal.TextLiteral;
public class MemberFieldReference {
private final NameReference identifier;
public MemberFieldReference(TextLiteral identifier) {
this.identifier = new NameReference(identifier);
}
public String getName(Type type, int modifiers) throws Exception {
Class real = type.getType();
Scope scope = type.getScope();
String name = identifier.getName(scope);
if(real == null) {
int order = type.getOrder();
if(ModifierType.isPrivate(modifiers) && ! ModifierType.isStatic(modifiers)) {
if(order > 0) {
return name + '@' + order; // private name
}
}
}
return name;
}
}