More progress.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@3861 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Ray Greenwell
2006-02-17 05:11:31 +00:00
parent cd7e127bc6
commit 74c35b6d65
22 changed files with 1632 additions and 19 deletions
@@ -63,7 +63,7 @@ public class ObjectInputStream
var target :*;
if (cmap.streamer === null) {
var clazz :Class = flash.util.getClassByName(cmap.cname);
var clazz :Class = flash.util.getClassByName(cmap.classname);
target = new clazz();
} else {
@@ -87,8 +87,7 @@ public class ObjectInputStream
{
// streamable objects
if (streamer == null) {
var sable :Streamable = (obj as Streamable);
sable.readObject(this);
obj.readObject(this); // obj is a Streamable.
return;
}
@@ -117,7 +116,7 @@ public class ObjectInputStream
public function defaultReadObject () :void
//throws IOError
{
_streamer.readObject(_current, this, false);
_streamer.readObject(_current, this);
}
public function readBoolean () :Boolean