Auto-unwrap invocation response arguments as well.
Make Long not wrapped for now. Don't svn update until after mdb regenerates everything.. git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@4569 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
@@ -4,7 +4,7 @@ package com.threerings.util {
|
||||
* Equivalent to java.lang.Long.
|
||||
*/
|
||||
public class Long
|
||||
implements Equalable, Wrapped
|
||||
implements Equalable
|
||||
{
|
||||
public var high :int;
|
||||
public var low :int;
|
||||
@@ -30,7 +30,7 @@ public class Long
|
||||
return (this.high == that.high) && (this.low == that.low);
|
||||
}
|
||||
|
||||
// from Wrapped
|
||||
// from Wrapped, except that we don't implement Wrapped anymore
|
||||
public function unwrap () :Object
|
||||
{
|
||||
return low; // TODO
|
||||
|
||||
Reference in New Issue
Block a user