|
@@ -71,16 +71,11 @@ class FileInput extends Input {
|
|
return file_tell(__f);
|
|
return file_tell(__f);
|
|
}
|
|
}
|
|
|
|
|
|
- public function eof() : Bool {
|
|
|
|
- return file_eof(__f);
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
private static var file_read = neko.Lib.load("std","file_read",4);
|
|
private static var file_read = neko.Lib.load("std","file_read",4);
|
|
private static var file_read_char = neko.Lib.load("std","file_read_char",1);
|
|
private static var file_read_char = neko.Lib.load("std","file_read_char",1);
|
|
|
|
|
|
private static var file_close = neko.Lib.load("std","file_close",1);
|
|
private static var file_close = neko.Lib.load("std","file_close",1);
|
|
private static var file_seek = neko.Lib.load("std","file_seek",3);
|
|
private static var file_seek = neko.Lib.load("std","file_seek",3);
|
|
private static var file_tell = neko.Lib.load("std","file_tell",1);
|
|
private static var file_tell = neko.Lib.load("std","file_tell",1);
|
|
- private static var file_eof = neko.Lib.load("std","file_eof",1);
|
|
|
|
|
|
|
|
}
|
|
}
|