Initialize default error value

This commit is contained in:
Jun Koyama
2021-06-26 20:28:56 +09:00
parent 0ceff1c8f9
commit 8040d3fc6b

View File

@ -195,6 +195,7 @@ export abstract class Value {
JsonError.errorValue = new JsonError('ERROR', true);
this.nullValue = new JsonNullvalue();
this.errorValue = new JsonError('ERROR', true);
Value.s_dummyKeys = new csmVector<string>();
}