|
@@ -49,7 +49,6 @@ class Input {
|
|
public function close() {
|
|
public function close() {
|
|
readBytes = function(_,_,_) { return throw Error.Closed; };
|
|
readBytes = function(_,_,_) { return throw Error.Closed; };
|
|
readChar = function() { return throw Error.Closed; };
|
|
readChar = function() { return throw Error.Closed; };
|
|
- skip = function(_) { throw Error.Closed; };
|
|
|
|
close = function() { };
|
|
close = function() { };
|
|
}
|
|
}
|
|
|
|
|
|
@@ -101,10 +100,6 @@ class Input {
|
|
return s;
|
|
return s;
|
|
}
|
|
}
|
|
|
|
|
|
- public function skip( nbytes : Int ) {
|
|
|
|
- read(nbytes);
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
public function readFloat() {
|
|
public function readFloat() {
|
|
return _float_of_bytes(untyped read(4).__s,false);
|
|
return _float_of_bytes(untyped read(4).__s,false);
|
|
}
|
|
}
|