Skip to content
Snippets Groups Projects
Commit 6d61fd8c authored by Lukas Stadler's avatar Lukas Stadler
Browse files

simplification in UpdateField

parent abb83ad5
No related branches found
No related tags found
No related merge requests found
......@@ -58,15 +58,12 @@ public abstract class UpdateField extends RBuiltinNode {
@Specialization
protected Object update(VirtualFrame frame, Object container, String field, Object value) {
Object updatedObject = container;
if (!coerceList.profile(container instanceof RAbstractListVector)) {
updatedObject = coerceList(container, updatedObject);
}
return extract.apply(frame, updatedObject, new Object[]{field}, value);
Object list = coerceList.profile(container instanceof RAbstractListVector) ? container : coerceList(container);
return extract.apply(frame, list, new Object[]{field}, value);
}
private Object coerceList(Object object, Object vector) {
if (object instanceof RAbstractVector) {
private Object coerceList(Object vector) {
if (vector instanceof RAbstractVector) {
if (castList == null) {
CompilerDirectives.transferToInterpreterAndInvalidate();
castList = insert(CastListNodeGen.create(true, true, false));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment