Skip to content

Commit

Permalink
Showing 1 changed file with 0 additions and 8 deletions.
Original file line number Diff line number Diff line change
@@ -67,9 +67,7 @@
import org.jruby.truffle.core.rubinius.RubiniusLastStringReadNode;
import org.jruby.truffle.core.rubinius.RubiniusLastStringWriteNodeGen;
import org.jruby.truffle.core.string.InterpolatedStringNode;
import org.jruby.truffle.core.string.StringNodesFactory;
import org.jruby.truffle.core.string.StringOperations;
import org.jruby.truffle.core.time.TimeNodesFactory;
import org.jruby.truffle.language.LexicalScope;
import org.jruby.truffle.language.RubyNode;
import org.jruby.truffle.language.RubyRootNode;
@@ -1813,12 +1811,6 @@ public RubyNode visitInstAsgnNode(org.jruby.ast.InstAsgnNode node) {
setSourceSection(ret, sourceSection);
return addNewlineIfNeeded(node, ret);
}
} else if (path.equals(corePath + "string.rb")) {
if (name.equals("@hash")) {
ret = StringNodesFactory.ModifyBangNodeFactory.create(new RubyNode[]{});
setSourceSection(ret, sourceSection);
return addNewlineIfNeeded(node, ret);
}
} else if (path.equals(corePath + "range.rb")) {
if (name.equals("@begin")) {
ret = RangeNodesFactory.InternalSetBeginNodeGen.create(self, rhs);

1 comment on commit b0fc315

@nirvdrum
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks. I guess I needed to do a clean build to see this.

Please sign in to comment.