@@ -181,7 +181,7 @@ public long len(Object self,
181
181
}
182
182
183
183
abstract static class ForeignBinaryNode extends PythonBinaryBuiltinNode {
184
- @ Child LookupAndCallBinaryNode op ;
184
+ @ Child private LookupAndCallBinaryNode op ;
185
185
protected final boolean reverse ;
186
186
187
187
protected ForeignBinaryNode (LookupAndCallBinaryNode op , boolean reverse ) {
@@ -423,7 +423,7 @@ abstract static class RFloorDivNode extends ForeignBinaryNode {
423
423
}
424
424
425
425
public abstract static class ForeignBinaryComparisonNode extends PythonBinaryBuiltinNode {
426
- @ Child BinaryComparisonNode comparisonNode ;
426
+ @ Child private BinaryComparisonNode comparisonNode ;
427
427
428
428
protected ForeignBinaryComparisonNode (BinaryComparisonNode genericOp ) {
429
429
this .comparisonNode = genericOp ;
@@ -634,7 +634,7 @@ public static CallNode create() {
634
634
@ Builtin (name = __GETITEM__ , minNumOfPositionalArgs = 2 )
635
635
@ GenerateNodeFactory
636
636
abstract static class GetitemNode extends PythonBinaryBuiltinNode {
637
- @ Child AccessForeignItemNodes .GetForeignItemNode getForeignItemNode = AccessForeignItemNodes .GetForeignItemNode .create ();
637
+ @ Child private AccessForeignItemNodes .GetForeignItemNode getForeignItemNode = AccessForeignItemNodes .GetForeignItemNode .create ();
638
638
639
639
@ Specialization
640
640
Object doit (Object object , Object key ) {
@@ -645,7 +645,7 @@ Object doit(Object object, Object key) {
645
645
@ Builtin (name = __GETATTR__ , minNumOfPositionalArgs = 2 )
646
646
@ GenerateNodeFactory
647
647
abstract static class GetattrNode extends PythonBinaryBuiltinNode {
648
- @ Child PForeignToPTypeNode toPythonNode = PForeignToPTypeNode .create ();
648
+ @ Child private PForeignToPTypeNode toPythonNode = PForeignToPTypeNode .create ();
649
649
650
650
@ Specialization
651
651
protected Object doIt (Object object , String member ,
@@ -705,7 +705,7 @@ protected PNone doIt(Object object, String key,
705
705
@ Builtin (name = __DELITEM__ , minNumOfPositionalArgs = 2 )
706
706
@ GenerateNodeFactory
707
707
abstract static class DelitemNode extends PythonBinaryBuiltinNode {
708
- AccessForeignItemNodes .RemoveForeignItemNode delForeignItemNode = AccessForeignItemNodes .RemoveForeignItemNode .create ();
708
+ @ Child private AccessForeignItemNodes .RemoveForeignItemNode delForeignItemNode = AccessForeignItemNodes .RemoveForeignItemNode .create ();
709
709
710
710
@ Specialization
711
711
PNone doit (Object object , Object key ) {
0 commit comments