File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed
graalpython/com.oracle.graal.python/src/com/oracle/graal/python Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change 30
30
import com .oracle .graal .python .builtins .objects .list .PList ;
31
31
import com .oracle .graal .python .builtins .objects .tuple .PTuple ;
32
32
import com .oracle .graal .python .nodes .PNode ;
33
+ import com .oracle .graal .python .runtime .PythonOptions ;
33
34
import com .oracle .graal .python .runtime .sequence .storage .DoubleSequenceStorage ;
34
35
import com .oracle .graal .python .runtime .sequence .storage .IntSequenceStorage ;
35
36
import com .oracle .graal .python .runtime .sequence .storage .ListSequenceStorage ;
Original file line number Diff line number Diff line change @@ -49,6 +49,9 @@ private PythonOptions() {
49
49
@ Option (category = OptionCategory .DEBUG , help = "" ) //
50
50
public static final OptionKey <Boolean > TraceSequenceStorageGeneralization = new OptionKey <>(false );
51
51
52
+ @ Option (category = OptionCategory .DEBUG , help = "" ) //
53
+ public static final OptionKey <Boolean > UnboxSequenceStorage = new OptionKey <>(true );
54
+
52
55
@ Option (category = OptionCategory .DEBUG , help = "" ) //
53
56
public static final OptionKey <Boolean > UnboxSequenceIteration = new OptionKey <>(true );
54
57
You can’t perform that action at this time.
0 commit comments