提交 8ba5f999 编写于 作者: J Johannes Rieken

debt - soft remove NotebookCell#source

上级 0d6b3aaf
......@@ -1392,8 +1392,6 @@ declare module 'vscode' {
readonly uri: Uri;
readonly cellKind: CellKind;
readonly document: TextDocument;
// API remove `source` or doc it as shorthand for document.getText()
readonly source: string;
language: string;
outputs: CellOutput[];
metadata: NotebookCellMetadata;
......
......@@ -73,6 +73,7 @@ export class ExtHostCell extends Disposable implements vscode.NotebookCell {
get source() {
// todo@jrieken remove this
console.warn('USE cell.document.getText() instead');
return this._documentData.getText();
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册