浏览代码

added toString()

Nicolas Cannasse 20 年之前
父节点
当前提交
68b8656960
共有 1 个文件被更改,包括 2 次插入0 次删除
  1. 2 0
      std/String.hx

+ 2 - 0
std/String.hx

@@ -15,4 +15,6 @@ extern class String {
 	function split( delimiter : String ) : Array<String>;
 	function substr( pos : Int, len : Int ) : String;
 
+	function toString() : String;
+
 }