Use TypedArray for array fields when converting a Streamable into ActionScript.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@4402 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2006-10-04 21:03:05 +00:00
parent e99ac5762d
commit f4a25e9521
@@ -249,7 +249,7 @@ public class ActionScriptSource
public static String toActionScriptType (Class type)
{
if (type.isArray()) {
return "Array";
return "TypedArray";
}
String tname = type.getName();