We don't need these methods, really.

They are freaking out asdoc.


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@4918 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Ray Greenwell
2007-12-22 01:51:46 +00:00
parent 148766903e
commit a5b132757b
+21 -18
View File
@@ -41,24 +41,27 @@ public class MapProxyObject extends Proxy
_map = source;
}
// from Object (but does not require 'override')
public function hasOwnProperty (name :String) :Boolean
{
return _map.containsKey(name);
}
// from Object (but does not require 'override')
public function propertyIsEnumerable (name :String) :Boolean
{
return _map.containsKey(name);
}
// from Object (but does not require 'override')
public function setPropertyIsEnumerable (name :String, isEnum :Boolean = true) :void
{
// no-op
// (Alternatively, we could keep a dictionary of keys that we ignore for enumeration...)
}
// The following are not strictly necessary and are freaking out asdoc, so I'll
// comment them out for now.
//
// // from Object (but does not require 'override')
// public function hasOwnProperty (name :String) :Boolean
// {
// return _map.containsKey(name);
// }
//
// // from Object (but does not require 'override')
// public function propertyIsEnumerable (name :String) :Boolean
// {
// return _map.containsKey(name);
// }
//
// // from Object (but does not require 'override')
// public function setPropertyIsEnumerable (name :String, isEnum :Boolean = true) :void
// {
// // no-op
// // (Alternatively, we could keep a dictionary of keys that we ignore for enumeration...)
// }
/**
* Handle value = proxy[key].