File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed
graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/objects/list Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change 29
29
import com .oracle .graal .python .runtime .sequence .PMutableSequence ;
30
30
import com .oracle .graal .python .runtime .sequence .storage .SequenceStorage ;
31
31
import com .oracle .truffle .api .CompilerDirectives ;
32
+ import com .oracle .truffle .api .interop .InteropLibrary ;
32
33
import com .oracle .truffle .api .interop .UnsupportedMessageException ;
34
+ import com .oracle .truffle .api .library .ExportLibrary ;
33
35
import com .oracle .truffle .api .library .ExportMessage ;
34
36
import com .oracle .truffle .api .library .ExportMessage .Ignore ;
35
37
import com .oracle .truffle .api .nodes .UnexpectedResultException ;
36
38
import com .oracle .truffle .api .object .DynamicObject ;
37
39
import com .oracle .truffle .api .source .SourceSection ;
38
40
41
+ @ ExportLibrary (InteropLibrary .class )
39
42
public final class PList extends PMutableSequence {
40
43
private final ListLiteralNode origin ;
41
44
private SequenceStorage store ;
You can’t perform that action at this time.
0 commit comments