Browse Source

added temp typedefs for backward compatibility

Nicolas Cannasse 13 years ago
parent
commit
bc33a3d660

+ 5 - 0
std/cpp/Sys.hx

@@ -0,0 +1,5 @@
+package cpp;
+
+#if !haxe3
+typedef Sys = __.Sys
+#end

+ 5 - 0
std/cpp/io/File.hx

@@ -0,0 +1,5 @@
+package cpp.io;
+
+#if !haxe3
+typedef File = sys.io.File;
+#end

+ 5 - 0
std/cpp/io/FileInput.hx

@@ -0,0 +1,5 @@
+package cpp.io;
+
+#if !haxe3
+typedef FileInput = sys.io.FileInput;
+#end

+ 5 - 0
std/cpp/io/FileOutput.hx

@@ -0,0 +1,5 @@
+package cpp.io;
+
+#if !haxe3
+typedef FileOutput = sys.io.FileOutput;
+#end

+ 5 - 0
std/cpp/io/Process.hx

@@ -0,0 +1,5 @@
+package cpp.io;
+
+#if !haxe3
+typedef Process = sys.io.Process;
+#end

+ 5 - 0
std/neko/Sys.hx

@@ -0,0 +1,5 @@
+package neko;
+
+#if !haxe3
+typedef Sys = __.Sys;
+#end

+ 5 - 0
std/neko/io/File.hx

@@ -0,0 +1,5 @@
+package neko.io;
+
+#if !haxe3
+typedef File = sys.io.File;
+#end

+ 5 - 0
std/neko/io/FileInput.hx

@@ -0,0 +1,5 @@
+package neko.io;
+
+#if !haxe3
+typedef FileInput = sys.io.FileInput;
+#end

+ 5 - 0
std/neko/io/FileOutput.hx

@@ -0,0 +1,5 @@
+package neko.io;
+
+#if !haxe3
+typedef FileOutput = sys.io.FileOutput;
+#end

+ 5 - 0
std/neko/io/Process.hx

@@ -0,0 +1,5 @@
+package neko.io;
+
+#if !haxe3
+typedef Process = sys.io.Process;
+#end

+ 5 - 0
std/php/Sys.hx

@@ -0,0 +1,5 @@
+package php;
+
+#if !haxe3
+typedef Sys = __.Sys
+#end

+ 5 - 0
std/php/io/File.hx

@@ -0,0 +1,5 @@
+package php.io;
+
+#if !haxe3
+typedef File = sys.io.File;
+#end

+ 5 - 0
std/php/io/FileInput.hx

@@ -0,0 +1,5 @@
+package php.io;
+
+#if !haxe3
+typedef FileInput = sys.io.FileInput;
+#end

+ 5 - 0
std/php/io/FileOutput.hx

@@ -0,0 +1,5 @@
+package php.io;
+
+#if !haxe3
+typedef FileOutput = sys.io.FileOutput;
+#end

+ 5 - 0
std/php/io/Process.hx

@@ -0,0 +1,5 @@
+package php.io;
+
+#if !haxe3
+typedef Process = sys.io.Process;
+#end