Skip to content

Commit 09ba268

Browse files
committed
add missing insert
1 parent 4ccee69 commit 09ba268

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/modules/BuiltinConstructors.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2033,7 +2033,7 @@ public PBuffer doGeneric(@SuppressWarnings("unused") Object cls, Object delegate
20332033
public boolean hasSetItem(Object object) {
20342034
if (getSetItemNode == null) {
20352035
CompilerDirectives.transferToInterpreterAndInvalidate();
2036-
getSetItemNode = LookupInheritedAttributeNode.create(__SETITEM__);
2036+
getSetItemNode = insert(LookupInheritedAttributeNode.create(__SETITEM__));
20372037
}
20382038
return getSetItemNode.execute(object) != PNone.NO_VALUE;
20392039
}

0 commit comments

Comments
 (0)