Skip to content

Commit 67ab9ff

Browse files
committed
fix naming of node
1 parent 7e2edd0 commit 67ab9ff

File tree

1 file changed

+1
-1
lines changed
  • graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/objects/superobject

1 file changed

+1
-1
lines changed

graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/objects/superobject/SuperBuiltins.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -328,7 +328,7 @@ public Object get(SuperObject self, Object obj, @SuppressWarnings("unused") Obje
328328

329329
@Builtin(name = SpecialMethodNames.__GETATTRIBUTE__, fixedNumOfPositionalArgs = 2)
330330
@GenerateNodeFactory
331-
public abstract static class ReprNode extends PythonBinaryBuiltinNode {
331+
public abstract static class GetattributeNode extends PythonBinaryBuiltinNode {
332332
@Child ReadAttributeFromObjectNode readFromDict = ReadAttributeFromObjectNode.create();
333333
@Child LookupInheritedAttributeNode readGet = LookupInheritedAttributeNode.create(SpecialMethodNames.__GET__);
334334
@Child CallTernaryMethodNode callGet;

0 commit comments

Comments
 (0)