package slangc.streams; import slang.streams.SyncOutput; public class FileOutput implements SyncOutput { private VFS vfs; private String path; protected FileInput(VFS vfs, String path) { this.vfs = vfs; this.path = path; } public void close() { throw new Error("TODO:close"); } }