This commit is contained in:
Adam D. Ruppe 2013-12-02 13:54:30 -05:00
parent efe3d3e29f
commit ea64ba0b1d
1 changed files with 12 additions and 0 deletions

12
jsvar.d
View File

@ -648,6 +648,18 @@ struct var {
return _op!(n, this, op, T)(t);
}
// this in foo
public var* opBinary(string op : "in", T)(T s) {
var rhs = var(s);
return rhs.opBinaryRight!"in"(this);
}
// foo in this
public var* opBinaryRight(string op : "in", T)(T s) {
// this needs to be an object
return var(s).get!string in this._object._properties;
}
public var apply(var _this, var[] args) {
if(this.payloadType() == Type.Function) {
assert(this._payload._function !is null);