mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-20 16:49:06 +01:00
rename hasExecutionOrder to supportsExecutionOrder
This commit is contained in:
@@ -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() {
|
||||
|
||||
Reference in New Issue
Block a user