File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed
graalpython/com.oracle.graal.python/src/com/oracle/graal/python/nodes/function/builtins Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change 61
61
* Implements cpython://Objects/typeobject.c#tp_new_wrapper.
62
62
*/
63
63
public final class WrapTpNew extends SlotWrapper {
64
- @ Child IsTypeNode isType ;
65
- @ Child IsSubtypeNode isSubtype ;
66
- @ Child PRaiseNode raiseNode ;
67
- @ Child LookupAttributeInMRONode lookupNewNode ;
68
- @ CompilationFinal ValueProfile builtinProfile ;
69
- @ CompilationFinal byte state = 0 ;
70
- @ CompilationFinal PythonBuiltinClassType owner ;
64
+ @ Child private IsTypeNode isType ;
65
+ @ Child private IsSubtypeNode isSubtype ;
66
+ @ Child private PRaiseNode raiseNode ;
67
+ @ Child private LookupAttributeInMRONode lookupNewNode ;
68
+ @ CompilationFinal private ValueProfile builtinProfile ;
69
+ @ CompilationFinal private byte state = 0 ;
70
+ @ CompilationFinal private PythonBuiltinClassType owner ;
71
71
72
72
private static final short NOT_SUBTP_STATE = 0b10000000;
73
73
private static final short NOT_CLASS_STATE = 0b01000000;
You can’t perform that action at this time.
0 commit comments