File tree Expand file tree Collapse file tree 2 files changed +2
-5
lines changed
graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/objects/common Expand file tree Collapse file tree 2 files changed +2
-5
lines changed Original file line number Diff line number Diff line change 79
79
import com .oracle .truffle .api .profiles .InlinedBranchProfile ;
80
80
import com .oracle .truffle .api .profiles .InlinedConditionProfile ;
81
81
import com .oracle .truffle .api .strings .TruffleString ;
82
- import com .oracle .truffle .object .ShapeImpl ;
83
82
84
83
/**
85
84
* This storage keeps a reference to the MRO when used for a type dict. Writing to this storage will
@@ -124,7 +123,7 @@ protected static Object[] keyArray(DynamicObjectStorage self) {
124
123
}
125
124
126
125
protected static Object [] keyArray (Shape shape ) {
127
- return (( ShapeImpl ) shape ). getKeyArray ();
126
+ return shape . getKeyList (). toArray ();
128
127
}
129
128
130
129
@ GenerateUncached
Original file line number Diff line number Diff line change 350
350
"GRAALPYTHON-LAUNCHER" ,
351
351
"GRAALPYTHON_NATIVE_LIBS" ,
352
352
"truffle:TRUFFLE_API" ,
353
- "tools:TRUFFLE_COVERAGE" ,
354
353
"tools:TRUFFLE_PROFILER" ,
355
354
"regex:TREGEX" ,
356
355
"sdk:GRAAL_SDK" ,
370
369
"com.oracle.graal.python.pegparser" ,
371
370
"truffle:TRUFFLE_API" ,
372
371
"truffle:TRUFFLE_NFI" ,
373
- "tools:TRUFFLE_COVERAGE" ,
374
372
"tools:TRUFFLE_PROFILER" ,
375
373
"sdk:GRAAL_SDK" ,
376
374
"sulong:SULONG_API" ,
381
379
"BOUNCYCASTLE-PKIX" ,
382
380
],
383
381
"requires" : [
382
+ "java.logging" ,
384
383
"java.management" ,
385
384
"jdk.management" ,
386
385
"jdk.unsupported" ,
875
874
"distDependencies" : [
876
875
"GRAALPYTHON_NATIVE_LIBS" ,
877
876
"truffle:TRUFFLE_API" ,
878
- "tools:TRUFFLE_COVERAGE" ,
879
877
"tools:TRUFFLE_PROFILER" ,
880
878
"regex:TREGEX" ,
881
879
"sdk:GRAAL_SDK" ,
You can’t perform that action at this time.
0 commit comments