default loose null object

This commit is contained in:
Adam D. Ruppe 2017-01-07 09:23:07 -05:00
parent 918f4ceab8
commit a45f9da6bf
1 changed files with 8 additions and 4 deletions

12
jsvar.d
View File

@ -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;