mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-20 16:49:06 +01:00
notebook tests for notebook content change events.
This commit is contained in:
@@ -952,13 +952,9 @@ export function createApiFactoryAndRegisterActors(accessor: ServicesAccessor): I
|
||||
checkProposedApiEnabled(extension);
|
||||
return extHostNotebook.onDidMoveNotebookCell(listener, thisArgs, disposables);
|
||||
},
|
||||
onDidClearCellOutputs(listener, thisArgs?, disposables?) {
|
||||
onDidChangeCellOutputs(listener, thisArgs?, disposables?) {
|
||||
checkProposedApiEnabled(extension);
|
||||
return extHostNotebook.onDidClearCellOutputs(listener, thisArgs, disposables);
|
||||
},
|
||||
onDidClearAllCellsOutputs(listener, thisArgs?, disposables?) {
|
||||
checkProposedApiEnabled(extension);
|
||||
return extHostNotebook.onDidClearAllCellsOutputs(listener, thisArgs, disposables);
|
||||
return extHostNotebook.onDidChangeCellOutputs(listener, thisArgs, disposables);
|
||||
},
|
||||
onDidChangeCellLanguage(listener, thisArgs?, disposables?) {
|
||||
checkProposedApiEnabled(extension);
|
||||
|
||||
Reference in New Issue
Block a user