Remove usage of CustomMarshaller for MainThreadEditors (#40169)

This commit is contained in:
Alex Dima
2017-12-13 17:01:09 +01:00
parent ed39dcd7a2
commit 1ec2438d57
6 changed files with 24 additions and 20 deletions

View File

@@ -435,7 +435,7 @@ export class ExtHostTextEditor implements vscode.TextEditor {
return this._proxy.$trySetDecorationsFast(
this._id,
decorationType.key,
/*TODO: marshaller is too slow*/JSON.stringify(_ranges)
_ranges
);
}
}