rename hasExecutionOrder to supportsExecutionOrder

This commit is contained in:
Johannes Rieken
2021-05-31 16:09:05 +02:00
parent f2fb2b8cbe
commit 2031df2653
4 changed files with 17 additions and 7 deletions

View File

@@ -143,10 +143,17 @@ export class ExtHostNotebookKernels implements ExtHostNotebookKernelsShape {
_update();
},
get hasExecutionOrder() {
return data.hasExecutionOrder ?? false;
return data.supportsExecutionOrder ?? false;
},
set hasExecutionOrder(value) {
data.hasExecutionOrder = value;
data.supportsExecutionOrder = value;
_update();
},
get supportsExecutionOrder() {
return data.supportsExecutionOrder ?? false;
},
set supportsExecutionOrder(value) {
data.supportsExecutionOrder = value;
_update();
},
get rendererScripts() {