(insert "we need typed metadata" discussion)
@@ -24,7 +24,7 @@ package haxe;
using cpp.NativeString;
@:coreApi
-@:deprecate('haxe.Utf8 is deprecated. Use UnicodeString instead.')
+@:deprecated('haxe.Utf8 is deprecated. Use UnicodeString instead.')
class Utf8
{
var __s:Array<Int>;
@@ -22,7 +22,7 @@
package haxe;
extern class Utf8 {
public function new( ?size : Int ):Void;
public function addChar( c : Int ) : Void;
@@ -25,7 +25,7 @@ package haxe;
Since not all platforms guarantee that `String` always uses UTF-8 encoding, you
can use this cross-platform API to perform operations on such strings.
**/
class Utf8 {
var __b : String;
var __b : Dynamic;
import php.Global;