It seems that Array streaming now works.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@3924 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Ray Greenwell
2006-03-08 03:28:09 +00:00
parent 3163825b29
commit b82b079469
9 changed files with 202 additions and 114 deletions
+6 -4
View File
@@ -32,11 +32,13 @@ public class ClassUtil
public static function isFinal (type :Class) :Boolean
{
var attrs :XMLList = describeType(type).elements("type");
if (type === String) {
return true;
}
// FUCK!!! This information is lost in the Class introspection
return true; //TODO
// TODO: there's currently no way to determine final from the class
//var attrs :XMLList = describeType(type).elements("type");
return false;
}
}
}