mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-22 01:29:04 +01:00
💄
This commit is contained in:
@@ -492,11 +492,11 @@ export class ExtHostNotebookDocument extends Disposable implements vscode.Notebo
|
||||
});
|
||||
}
|
||||
|
||||
getCell(cellHandle: number) {
|
||||
getCell(cellHandle: number): ExtHostCell | undefined {
|
||||
return this.cells.find(cell => cell.handle === cellHandle);
|
||||
}
|
||||
|
||||
getCell2(cellUri: UriComponents) {
|
||||
getCell2(cellUri: UriComponents): ExtHostCell | undefined {
|
||||
return this.cells.find(cell => cell.uri.fragment === cellUri.fragment);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user