mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-21 17:19:01 +01:00
strict null checks (#60565)
This commit is contained in:
@@ -24,9 +24,14 @@
|
||||
"./vs/base/browser/ui/list/splice.ts",
|
||||
"./vs/base/browser/ui/octiconLabel/octiconLabel.mock.ts",
|
||||
"./vs/base/browser/ui/octiconLabel/octiconLabel.ts",
|
||||
"./vs/base/browser/ui/scrollbar/abstractScrollbar.ts",
|
||||
"./vs/base/browser/ui/scrollbar/horizontalScrollbar.ts",
|
||||
"./vs/base/browser/ui/scrollbar/scrollableElement.ts",
|
||||
"./vs/base/browser/ui/scrollbar/scrollableElementOptions.ts",
|
||||
"./vs/base/browser/ui/scrollbar/scrollbarArrow.ts",
|
||||
"./vs/base/browser/ui/scrollbar/scrollbarState.ts",
|
||||
"./vs/base/browser/ui/scrollbar/scrollbarVisibilityController.ts",
|
||||
"./vs/base/browser/ui/scrollbar/verticalScrollbar.ts",
|
||||
"./vs/base/browser/ui/tree/tree.ts",
|
||||
"./vs/base/browser/ui/widget.ts",
|
||||
"./vs/base/common/actions.ts",
|
||||
@@ -57,8 +62,8 @@
|
||||
"./vs/base/common/idGenerator.ts",
|
||||
"./vs/base/common/iterator.ts",
|
||||
"./vs/base/common/jsonSchema.ts",
|
||||
"./vs/base/common/keyCodes.ts",
|
||||
"./vs/base/common/keybindingParser.ts",
|
||||
"./vs/base/common/keyCodes.ts",
|
||||
"./vs/base/common/labels.ts",
|
||||
"./vs/base/common/lifecycle.ts",
|
||||
"./vs/base/common/linkedList.ts",
|
||||
@@ -111,33 +116,42 @@
|
||||
"./vs/editor/browser/controller/coreCommands.ts",
|
||||
"./vs/editor/browser/controller/mouseHandler.ts",
|
||||
"./vs/editor/browser/controller/mouseTarget.ts",
|
||||
"./vs/editor/browser/controller/pointerHandler.ts",
|
||||
"./vs/editor/browser/controller/textAreaHandler.ts",
|
||||
"./vs/editor/browser/controller/textAreaInput.ts",
|
||||
"./vs/editor/browser/controller/textAreaState.ts",
|
||||
"./vs/editor/browser/core/editorState.ts",
|
||||
"./vs/editor/browser/editorBrowser.ts",
|
||||
"./vs/editor/browser/editorDom.ts",
|
||||
"./vs/editor/browser/editorExtensions",
|
||||
"./vs/editor/browser/editorExtensions.ts",
|
||||
"./vs/editor/browser/editorExtensions",
|
||||
"./vs/editor/browser/services/abstractCodeEditorService.ts",
|
||||
"./vs/editor/browser/services/bulkEditService.ts",
|
||||
"./vs/editor/browser/services/codeEditorService.ts",
|
||||
"./vs/editor/browser/services/codeEditorServiceImpl.ts",
|
||||
"./vs/editor/browser/services/openerService.ts",
|
||||
"./vs/editor/browser/view/dynamicViewOverlay.ts",
|
||||
"./vs/editor/browser/view/viewController.ts",
|
||||
"./vs/editor/browser/view/viewImpl.ts",
|
||||
"./vs/editor/browser/view/viewLayer.ts",
|
||||
"./vs/editor/browser/view/viewOutgoingEvents.ts",
|
||||
"./vs/editor/browser/view/viewOverlays.ts",
|
||||
"./vs/editor/browser/view/viewPart.ts",
|
||||
"./vs/editor/browser/viewParts/contentWidgets/contentWidgets.ts",
|
||||
"./vs/editor/browser/viewParts/currentLineHighlight/currentLineHighlight.ts",
|
||||
"./vs/editor/browser/viewParts/currentLineMarginHighlight/currentLineMarginHighlight.ts",
|
||||
"./vs/editor/browser/viewParts/decorations/decorations.ts",
|
||||
"./vs/editor/browser/viewParts/editorScrollbar/editorScrollbar.ts",
|
||||
"./vs/editor/browser/viewParts/glyphMargin/glyphMargin.ts",
|
||||
"./vs/editor/browser/viewParts/indentGuides/indentGuides.ts",
|
||||
"./vs/editor/browser/viewParts/lineNumbers/lineNumbers.ts",
|
||||
"./vs/editor/browser/viewParts/lines/rangeUtil.ts",
|
||||
"./vs/editor/browser/viewParts/lines/viewLine.ts",
|
||||
"./vs/editor/browser/viewParts/lines/viewLines.ts",
|
||||
"./vs/editor/browser/viewParts/linesDecorations/linesDecorations.ts",
|
||||
"./vs/editor/browser/viewParts/margin/margin.ts",
|
||||
"./vs/editor/browser/viewParts/marginDecorations/marginDecorations.ts",
|
||||
"./vs/editor/browser/viewParts/minimap/minimap.ts",
|
||||
"./vs/editor/browser/viewParts/overlayWidgets/overlayWidgets.ts",
|
||||
"./vs/editor/browser/viewParts/overviewRuler/decorationsOverviewRuler.ts",
|
||||
"./vs/editor/browser/viewParts/overviewRuler/overviewRuler.ts",
|
||||
@@ -147,6 +161,7 @@
|
||||
"./vs/editor/browser/viewParts/viewCursors/viewCursor.ts",
|
||||
"./vs/editor/browser/viewParts/viewCursors/viewCursors.ts",
|
||||
"./vs/editor/browser/viewParts/viewZones/viewZones.ts",
|
||||
"./vs/editor/browser/widget/codeEditorWidget.ts",
|
||||
"./vs/editor/browser/widget/diffNavigator.ts",
|
||||
"./vs/editor/common/commands/replaceCommand.ts",
|
||||
"./vs/editor/common/commands/shiftCommand.ts",
|
||||
@@ -219,10 +234,10 @@
|
||||
"./vs/editor/common/services/editorWorkerService.ts",
|
||||
"./vs/editor/common/services/editorWorkerServiceImpl.ts",
|
||||
"./vs/editor/common/services/languagesRegistry.ts",
|
||||
"./vs/editor/common/services/modeService.ts",
|
||||
"./vs/editor/common/services/modeServiceImpl.ts",
|
||||
"./vs/editor/common/services/modelService.ts",
|
||||
"./vs/editor/common/services/modelServiceImpl.ts",
|
||||
"./vs/editor/common/services/modeService.ts",
|
||||
"./vs/editor/common/services/modeServiceImpl.ts",
|
||||
"./vs/editor/common/services/resolverService.ts",
|
||||
"./vs/editor/common/services/resourceConfiguration.ts",
|
||||
"./vs/editor/common/services/resourceConfigurationImpl.ts",
|
||||
@@ -260,8 +275,8 @@
|
||||
"./vs/editor/contrib/find/replacePattern.ts",
|
||||
"./vs/editor/contrib/fontZoom/fontZoom.ts",
|
||||
"./vs/editor/contrib/hover/getHover.ts",
|
||||
"./vs/editor/contrib/inPlaceReplace/inPlaceReplaceCommand.ts",
|
||||
"./vs/editor/contrib/indentation/indentUtils.ts",
|
||||
"./vs/editor/contrib/inPlaceReplace/inPlaceReplaceCommand.ts",
|
||||
"./vs/editor/contrib/linesOperations/copyLinesCommand.ts",
|
||||
"./vs/editor/contrib/quickOpen/quickOpen.ts",
|
||||
"./vs/editor/contrib/toggleTabFocusMode/toggleTabFocusMode.ts",
|
||||
@@ -307,7 +322,9 @@
|
||||
"./vs/platform/instantiation/common/serviceCollection.ts",
|
||||
"./vs/platform/integrity/common/integrity.ts",
|
||||
"./vs/platform/jsonschemas/common/jsonContributionRegistry.ts",
|
||||
"./vs/platform/keybinding/common/keybindingResolver.ts",
|
||||
"./vs/platform/keybinding/common/keybindingsRegistry.ts",
|
||||
"./vs/platform/keybinding/common/resolvedKeybindingItem.ts",
|
||||
"./vs/platform/lifecycle/common/lifecycle.ts",
|
||||
"./vs/platform/localizations/common/localizations.ts",
|
||||
"./vs/platform/log/common/bufferLog.ts",
|
||||
@@ -323,14 +340,15 @@
|
||||
"./vs/platform/opener/common/opener.ts",
|
||||
"./vs/platform/output/node/outputAppender.ts",
|
||||
"./vs/platform/progress/common/progress.ts",
|
||||
"./vs/platform/quickOpen/common/quickOpen.ts",
|
||||
"./vs/platform/quickinput/common/quickInput.ts",
|
||||
"./vs/platform/quickOpen/common/quickOpen.ts",
|
||||
"./vs/platform/registry/common/platform.ts",
|
||||
"./vs/platform/search/common/search.ts",
|
||||
"./vs/platform/state/common/state.ts",
|
||||
"./vs/platform/statusbar/common/statusbar.ts",
|
||||
"./vs/platform/storage/common/storage.ts",
|
||||
"./vs/platform/telemetry/common/telemetry.ts",
|
||||
"./vs/platform/telemetry/common/telemetryUtils.ts",
|
||||
"./vs/platform/telemetry/node/telemetryNodeUtils.ts",
|
||||
"./vs/platform/theme/common/colorRegistry.ts",
|
||||
"./vs/platform/theme/common/themeService.ts",
|
||||
|
||||
Reference in New Issue
Block a user