Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/microsoft/vscode.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJackson Kearl <jakearl@microsoft.com>2020-04-29 18:39:43 +0300
committerJackson Kearl <jakearl@microsoft.com>2020-04-29 18:39:43 +0300
commitc39ce2f2d846a7c2816720641a43e0ac046f696c (patch)
tree3bb83c46add2fb57a0d741d6fa03ef074ce84828 /.vscode/searches
parent151c443411dc2908c2356a2eaf79f5d2747ac44f (diff)
Add when conditions. Closes #96600.
Fixup outdated saved search.
Diffstat (limited to '.vscode/searches')
-rw-r--r--.vscode/searches/ts36031.code-search22
1 files changed, 16 insertions, 6 deletions
diff --git a/.vscode/searches/ts36031.code-search b/.vscode/searches/ts36031.code-search
index a232dfbd344..8a74db2a9ae 100644
--- a/.vscode/searches/ts36031.code-search
+++ b/.vscode/searches/ts36031.code-search
@@ -1,9 +1,19 @@
-# Query: \\w+\\?\\..+![(.[]
+# Query: \\w+\\?\\.\\w+![(.[]
# Flags: RegExp
# ContextLines: 2
+
+2 results - 2 files
+
src/vs/base/browser/ui/tree/asyncDataTree.ts:
- 270 } : undefined,
- 271 isChecked: options.ariaProvider!.isChecked ? (e) => {
- 272: return options.ariaProvider?.isChecked!(e.element as T);
- 273 } : undefined
- 274 },
+ 243 } : () => 'treeitem',
+ 244 isChecked: options.accessibilityProvider!.isChecked ? (e) => {
+ 245: return !!(options.accessibilityProvider?.isChecked!(e.element as T));
+ 246 } : undefined,
+ 247 getAriaLabel(e) {
+
+src/vs/workbench/contrib/debug/browser/debugConfigurationManager.ts:
+ 254
+ 255 return debugDynamicExtensions.map(e => {
+ 256: const type = e.contributes?.debuggers![0].type!;
+ 257 return {
+ 258 label: this.getDebuggerLabel(type)!,