Răsfoiți Sursa

Merge branch 'HaxeFoundation:development' into kt_coro

Aidan Lee 1 lună în urmă
părinte
comite
869d0ca57e
2 a modificat fișierele cu 2 adăugiri și 2 ștergeri
  1. 1 1
      std/haxe/io/Input.hx
  2. 1 1
      std/haxe/io/Output.hx

+ 1 - 1
std/haxe/io/Input.hx

@@ -29,7 +29,7 @@ package haxe.io;
 	All functions which read data throw `Eof` when the end of the stream
 	is reached.
 **/
-class Input {
+abstract class Input {
 	/**
 		Endianness (word byte order) used when reading numbers.
 

+ 1 - 1
std/haxe/io/Output.hx

@@ -28,7 +28,7 @@ package haxe.io;
 	methods. See `File.write` and `String.write` for two ways of creating an
 	Output.
 **/
-class Output {
+abstract class Output {
 	/**
 		Endianness (word byte order) used when writing numbers.