This commit is contained in:
toasted-nutbread 2020-02-02 11:22:22 -05:00
parent fff1e67a5e
commit 3c28c7dd7c

View File

@ -586,8 +586,8 @@ class JsonSchemaTraversalInfo {
constructor(value, schema) {
this.valuePath = [];
this.schemaPath = [];
this.valuePush([null, value]);
this.schemaPush([null, schema]);
this.valuePush(null, value);
this.schemaPush(null, schema);
}
valuePush(path, value) {