1
1
mirror of https://github.com/github/semantic.git synced 2024-11-25 02:58:36 +03:00

Correct the hash passed to Diff.

This commit is contained in:
Rob Rix 2015-10-23 18:55:30 -04:00
parent 20057acaff
commit ccc57c6411

View File

@ -158,7 +158,7 @@
function diffFromJSON(json) {
if (json.pure != null) { return new Diff({ pure: new Patch(json.pure) }); }
if (json.roll != null) {
return new Diff({ ranges: json.roll.extract, roll: new Syntax(json.roll.unwrap, function(x) { return diffFromJSON(x); }) });
return new Diff({ roll: { extract: json.roll.extract, unwrap: new Syntax(json.roll.unwrap, function(x) { return diffFromJSON(x); }) } });
}
}