mirror of https://github.com/adamdruppe/arsd.git
default loose null object
This commit is contained in:
parent
918f4ceab8
commit
a45f9da6bf
12
jsvar.d
12
jsvar.d
|
@ -1093,8 +1093,12 @@ struct var {
|
||||||
from = pt._payload._object;
|
from = pt._payload._object;
|
||||||
}
|
}
|
||||||
|
|
||||||
if(from is null)
|
if(from is null) {
|
||||||
throw new DynamicTypeException(var(null), Type.Object, file, line);
|
version(jsvar_throw)
|
||||||
|
throw new DynamicTypeException(var(null), Type.Object, file, line);
|
||||||
|
else
|
||||||
|
return *(new var);
|
||||||
|
}
|
||||||
return from._getMember(name, true, false, file, line);
|
return from._getMember(name, true, false, file, line);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1293,7 +1297,7 @@ struct var {
|
||||||
|
|
||||||
string toJson() {
|
string toJson() {
|
||||||
auto v = toJsonValue();
|
auto v = toJsonValue();
|
||||||
return toJSON(&v);
|
return toJSON(v);
|
||||||
}
|
}
|
||||||
|
|
||||||
JSONValue toJsonValue() {
|
JSONValue toJsonValue() {
|
||||||
|
@ -1408,7 +1412,7 @@ class PrototypeObject {
|
||||||
val.object[k] = v.toJsonValue();
|
val.object[k] = v.toJsonValue();
|
||||||
}
|
}
|
||||||
|
|
||||||
return toJSON(&val);
|
return toJSON(val);
|
||||||
}
|
}
|
||||||
|
|
||||||
var[string] _properties;
|
var[string] _properties;
|
||||||
|
|
Loading…
Reference in New Issue