Checkpoint. This is not compiling right now due to three annoying problems:
- There seems to be a compiler bug that causes classes to be imported spuriously, or something. Classes that import only one of the Log classes are complaining about visibility of more than one of them. - static constants are not inherited by subclasses, which is super annoying. I will try switching to prototype consts, but there seems to be a problem initializing those, and we don't want to make them vars... - The fact that there are no inner classes combined with no method overloading is making things very inconvenient. I've been experimenting with faking an anonymous class by instantiating a dynamic object and attaching functions to it, but it's not working. I'll continue experimenting, because if we can't do this then someone shoot me. git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@3957 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
@@ -88,8 +88,7 @@ public class InvocationDirector
|
||||
// if we're logged on, clear out any receiver id mapping
|
||||
if (_clobj != null) {
|
||||
var rreg :InvocationRegistration =
|
||||
(_clobj.receivers.getByKey(receiverCode)
|
||||
as InvocationRegistration);
|
||||
(_clobj.receivers.get(receiverCode) as InvocationRegistration);
|
||||
if (rreg == null) {
|
||||
Log.warning("Receiver unregistered for which we have no " +
|
||||
"id to code mapping [code=" + receiverCode + "].");
|
||||
|
||||
@@ -61,7 +61,7 @@ public class DSet
|
||||
*/
|
||||
public function containsKey (key :Object) :Boolean
|
||||
{
|
||||
return getByKey(key) != null;
|
||||
return get(key) != null;
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -69,7 +69,7 @@ public class DSet
|
||||
* the specified key or null if no entry could be found that matches
|
||||
* the key.
|
||||
*/
|
||||
public function getByKey (key :Object) :DSetEntry
|
||||
public function get (key :Object) :DSetEntry
|
||||
{
|
||||
// o(n) for now
|
||||
for each (var entry :DSetEntry in _entries) {
|
||||
|
||||
Reference in New Issue
Block a user