org.jruby.ir.operands.Symbol Maven / Gradle / Ivy
package org.jruby.ir.operands;
import org.jruby.ir.IRVisitor;
import org.jruby.runtime.DynamicScope;
import org.jruby.runtime.ThreadContext;
import org.jruby.runtime.builtin.IRubyObject;
public class Symbol extends Reference {
public Symbol(String name) {
super(name);
}
@Override
public boolean canCopyPropagate() {
return true;
}
@Override
public Object retrieve(ThreadContext context, IRubyObject self, DynamicScope currDynScope, Object[] temp) {
return context.runtime.newSymbol(getName());
}
@Override
public String toString() {
return ":'" + getName() + "'";
}
@Override
public void visit(IRVisitor visitor) {
visitor.Symbol(this);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy