|
91 | 91 | "./vs/code/electron-main/keyboard.ts", |
92 | 92 | "./vs/code/electron-main/theme.ts", |
93 | 93 | "./vs/code/node/shellEnv.ts", |
| 94 | + "./vs/editor/browser/config/elementSizeObserver.ts", |
| 95 | + "./vs/editor/common/commands/replaceCommand.ts", |
| 96 | + "./vs/editor/common/commands/surroundSelectionCommand.ts", |
94 | 97 | "./vs/editor/common/config/editorOptions.ts", |
95 | 98 | "./vs/editor/common/config/editorZoom.ts", |
96 | 99 | "./vs/editor/common/config/fontInfo.ts", |
97 | 100 | "./vs/editor/common/controller/cursorEvents.ts", |
98 | 101 | "./vs/editor/common/controller/wordCharacterClassifier.ts", |
99 | 102 | "./vs/editor/common/core/characterClassifier.ts", |
| 103 | + "./vs/editor/common/core/editOperation.ts", |
| 104 | + "./vs/editor/common/core/lineTokens.ts", |
100 | 105 | "./vs/editor/common/core/position.ts", |
101 | 106 | "./vs/editor/common/core/range.ts", |
102 | 107 | "./vs/editor/common/core/rgba.ts", |
103 | 108 | "./vs/editor/common/core/selection.ts", |
104 | 109 | "./vs/editor/common/core/stringBuilder.ts", |
| 110 | + "./vs/editor/common/core/token.ts", |
105 | 111 | "./vs/editor/common/core/uint.ts", |
| 112 | + "./vs/editor/common/editorAction.ts", |
| 113 | + "./vs/editor/common/editorCommon.ts", |
| 114 | + "./vs/editor/common/editorContextKeys.ts", |
106 | 115 | "./vs/editor/common/model.ts", |
107 | 116 | "./vs/editor/common/model/editStack.ts", |
| 117 | + "./vs/editor/common/model/indentationGuesser.ts", |
108 | 118 | "./vs/editor/common/model/intervalTree.ts", |
109 | | - "./vs/editor/common/editorContextKeys.ts", |
110 | 119 | "./vs/editor/common/model/mirrorTextModel.ts", |
111 | 120 | "./vs/editor/common/model/pieceTreeTextBuffer/pieceTreeBase.ts", |
112 | 121 | "./vs/editor/common/model/pieceTreeTextBuffer/pieceTreeTextBuffer.ts", |
| 122 | + "./vs/editor/common/model/pieceTreeTextBuffer/pieceTreeTextBufferBuilder.ts", |
113 | 123 | "./vs/editor/common/model/pieceTreeTextBuffer/rbTreeBase.ts", |
114 | 124 | "./vs/editor/common/model/textModel.ts", |
115 | 125 | "./vs/editor/common/model/textModelEvents.ts", |
116 | | - "./vs/editor/common/modes/languageSelector.ts", |
117 | 126 | "./vs/editor/common/model/textModelSearch.ts", |
118 | 127 | "./vs/editor/common/model/textModelTokens.ts", |
119 | 128 | "./vs/editor/common/model/wordHelper.ts", |
120 | 129 | "./vs/editor/common/modes.ts", |
| 130 | + "./vs/editor/common/modes/abstractMode.ts", |
| 131 | + "./vs/editor/common/modes/languageConfiguration.ts", |
121 | 132 | "./vs/editor/common/modes/languageConfigurationRegistry.ts", |
122 | 133 | "./vs/editor/common/modes/languageFeatureRegistry.ts", |
| 134 | + "./vs/editor/common/modes/languageSelector.ts", |
123 | 135 | "./vs/editor/common/modes/nullMode.ts", |
| 136 | + "./vs/editor/common/modes/supports.ts", |
| 137 | + "./vs/editor/common/modes/supports/characterPair.ts", |
124 | 138 | "./vs/editor/common/modes/supports/electricCharacter.ts", |
| 139 | + "./vs/editor/common/modes/supports/indentRules.ts", |
125 | 140 | "./vs/editor/common/modes/supports/onEnter.ts", |
126 | 141 | "./vs/editor/common/modes/supports/richEditBrackets.ts", |
127 | 142 | "./vs/editor/common/modes/tokenizationRegistry.ts", |
| 143 | + "./vs/editor/common/services/editorWorkerService.ts", |
| 144 | + "./vs/editor/common/services/modeService.ts", |
| 145 | + "./vs/editor/common/services/modelService.ts", |
| 146 | + "./vs/editor/common/services/resolverService.ts", |
128 | 147 | "./vs/editor/common/view/overviewZoneManager.ts", |
129 | 148 | "./vs/editor/common/viewLayout/whitespaceComputer.ts", |
130 | 149 | "./vs/editor/common/viewModel/prefixSumComputer.ts", |
131 | 150 | "./vs/editor/contrib/codeAction/codeActionTrigger.ts", |
| 151 | + "./vs/editor/contrib/colorPicker/colorPickerModel.ts", |
132 | 152 | "./vs/editor/contrib/find/findState.ts", |
| 153 | + "./vs/editor/contrib/find/replaceAllCommand.ts", |
133 | 154 | "./vs/editor/contrib/find/replacePattern.ts", |
| 155 | + "./vs/editor/contrib/inPlaceReplace/inPlaceReplaceCommand.ts", |
134 | 156 | "./vs/editor/contrib/indentation/indentUtils.ts", |
| 157 | + "./vs/editor/contrib/linesOperations/copyLinesCommand.ts", |
135 | 158 | "./vs/editor/standalone/common/monarch/monarchCommon.ts", |
136 | 159 | "./vs/editor/standalone/common/monarch/monarchCompile.ts", |
137 | 160 | "./vs/editor/standalone/common/monarch/monarchTypes.ts", |
| 161 | + "./vs/editor/test/common/commentMode.ts", |
| 162 | + "./vs/editor/test/common/core/viewLineToken.ts", |
| 163 | + "./vs/editor/test/common/editorTestUtils.ts", |
| 164 | + "./vs/editor/test/common/mocks/mockMode.ts", |
| 165 | + "./vs/editor/test/common/model/benchmark/benchmarkUtils.ts", |
| 166 | + "./vs/editor/test/common/modes/supports/javascriptOnEnterRules.ts", |
| 167 | + "./vs/editor/test/common/modesTestUtils.ts", |
138 | 168 | "./vs/nls.mock.ts", |
139 | 169 | "./vs/platform/broadcast/electron-browser/broadcastService.ts", |
140 | 170 | "./vs/platform/clipboard/common/clipboardService.ts", |
|
191 | 221 | "./vs/workbench/common/extensionHostProtocol.ts", |
192 | 222 | "./vs/workbench/common/panel.ts", |
193 | 223 | "./vs/workbench/common/viewlet.ts", |
| 224 | + "./vs/workbench/parts/codeEditor/browser/simpleEditorOptions.ts", |
194 | 225 | "./vs/workbench/parts/execution/common/execution.ts", |
195 | 226 | "./vs/workbench/parts/extensions/common/extensionQuery.ts", |
196 | 227 | "./vs/workbench/parts/logs/common/logConstants.ts", |
197 | 228 | "./vs/workbench/parts/markers/electron-browser/constants.ts", |
198 | 229 | "./vs/workbench/parts/outline/electron-browser/outline.ts", |
199 | 230 | "./vs/workbench/parts/output/common/output.ts", |
| 231 | + "./vs/workbench/parts/scm/electron-browser/scmUtil.ts", |
200 | 232 | "./vs/workbench/parts/search/common/constants.ts", |
201 | 233 | "./vs/workbench/parts/terminal/browser/terminalWidgetManager.ts", |
202 | 234 | "./vs/workbench/parts/terminal/common/terminal.ts", |
203 | 235 | "./vs/workbench/parts/welcome/page/electron-browser/vs_code_welcome_page.ts", |
204 | 236 | "./vs/workbench/services/activity/common/activity.ts", |
| 237 | + "./vs/workbench/services/backup/common/backup.ts", |
205 | 238 | "./vs/workbench/services/configuration/common/jsonEditing.ts", |
206 | 239 | "./vs/workbench/services/decorations/browser/decorations.ts", |
207 | 240 | "./vs/workbench/services/extensions/node/lazyPromise.ts", |
|
212 | 245 | "./vs/workbench/services/hash/common/hashService.ts", |
213 | 246 | "./vs/workbench/services/hash/node/hashService.ts", |
214 | 247 | "./vs/workbench/services/panel/common/panelService.ts", |
| 248 | + "./vs/workbench/services/scm/common/scm.ts", |
| 249 | + "./vs/workbench/services/scm/common/scmService.ts", |
215 | 250 | "./vs/workbench/services/search/node/search.ts", |
| 251 | + "./vs/workbench/services/textMate/electron-browser/textMateService.ts", |
216 | 252 | "./vs/workbench/services/title/common/titleService.ts", |
217 | 253 | "./vs/workbench/test/electron-browser/api/mock.ts" |
218 | 254 | ], |
|
0 commit comments