return new WriteInstanceVariableNode(context, sourceSection, nameWithoutSigil, receiver, rhs, false);
}
@Override
public RubyNode visitInstVarNode(org.jruby.ast.InstVarNode node) {
final SourceSection sourceSection = translate(node.getPosition());
final String nameWithoutSigil = node.getName();
final RubyNode receiver = new SelfNode(context, sourceSection);
return new ReadInstanceVariableNode(context, sourceSection, nameWithoutSigil, receiver, false);