These are breaking asdoc.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@5721 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Ray Greenwell
2009-04-15 18:52:15 +00:00
parent 61f752a105
commit 305c53f53a
@@ -19,25 +19,25 @@ public class ImmutableProxyObject extends Proxy
_throwErrors = throwErrors;
}
public function hasOwnProperty (name :String) :Boolean
{
return _source.hasOwnProperty(name);
}
public function isPrototypeOf (theClass :Object) :Boolean
{
return _source.isPrototypeOf(theClass);
}
public function propertyIsEnumerable (name :String) :Boolean
{
return _source.propertyIsEnumerable(name);
}
public function setPropertyIsEnumerable (name :String, isEnum :Boolean = true) :void
{
immutable();
}
// public function hasOwnProperty (name :String) :Boolean
// {
// return _source.hasOwnProperty(name);
// }
//
// public function isPrototypeOf (theClass :Object) :Boolean
// {
// return _source.isPrototypeOf(theClass);
// }
//
// public function propertyIsEnumerable (name :String) :Boolean
// {
// return _source.propertyIsEnumerable(name);
// }
//
// public function setPropertyIsEnumerable (name :String, isEnum :Boolean = true) :void
// {
// immutable();
// }
public function toString () :String
{