Browse Source

added stubs (haxe3 transitional)

Nicolas Cannasse 13 years ago
parent
commit
1f3f7edbae
3 changed files with 15 additions and 0 deletions
  1. 5 0
      std/cpp/Utf8.hx
  2. 5 0
      std/neko/Utf8.hx
  3. 5 0
      std/php/Utf8.hx

+ 5 - 0
std/cpp/Utf8.hx

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

+ 5 - 0
std/neko/Utf8.hx

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

+ 5 - 0
std/php/Utf8.hx

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