~ubuntu-branches/ubuntu/vivid/nqp/vivid-proposed

« back to all changes in this revision

Viewing changes to src/vm/jvm/runtime/org/perl6/nqp/sixmodel/reprs/IOHandleInstance.java

  • Committer: Package Import Robot
  • Author(s): Alessandro Ghedini
  • Date: 2013-11-01 12:09:18 UTC
  • mfrom: (1.1.4)
  • Revision ID: package-import@ubuntu.com-20131101120918-kx51sl0sxl3exsxi
Tags: 2013.10-1
* New upstream release
* Bump versioned (Build-)Depends on parrot
* Update patches
* Install new README.pod
* Fix vcs-field-not-canonical
* Do not install rubyish examples
* Do not Depends on parrot-devel anymore
* Add 07_disable-serialization-tests.patch

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
package org.perl6.nqp.sixmodel.reprs;
 
2
 
 
3
import java.nio.file.DirectoryStream;
 
4
import java.nio.file.Path;
 
5
import java.util.Iterator;
 
6
 
 
7
import org.perl6.nqp.sixmodel.SixModelObject;
 
8
 
 
9
public class IOHandleInstance extends SixModelObject {
 
10
        /* Object that can perform I/O operations; will be checked for its
 
11
     * capabilities by interface by ops and then invoked. */
 
12
    public Object handle;
 
13
 
 
14
    /* This wraps directories that were opened for lazy file listings */
 
15
    public DirectoryStream<Path> dirstrm;
 
16
    
 
17
    /* This is the iterator from the dirstrm */
 
18
    public Iterator<Path> diri;
 
19
}