@@ -213,10 +213,10 @@ class TBasicConfigValidator {
213213class TBasicEditorServiceForCodeRunner {
214214 # editor: IEditor
215215 # config_manager: IConfigManager
216- // creates context which will delete file if it's temporary
216+ Creates context which will delete file if it's temporary
217217 + get_file_for_run() Context[str]
218- // runs save_file or save_all_files if the command_builder is found,
219- // and vars in config are True
218+ Runs save_file or save_all_files if the command_builder is found,
219+ and vars in config are True
220220 + prepare_for_run() None
221221 + remove_coderunner_tempfiles() None
222222}
@@ -253,32 +253,28 @@ class TBasicCommandDispatcherStrategySelector {
253253 + dispatch_by_file_type(file_path_abs: str) Optional[ICommandBuilder]
254254 + dispatch_by_file_ext(file_path_abs: str) Optional[ICommandBuilder]
255255 + dispatch_by_glob(file_path_abs: str) Optional[ICommandBuilder]
256- + dispatch_by_shebang(file_path_abs: str) Optional[TShebangCommandBuilder ]
256+ + dispatch_by_shebang(file_path_abs: str) Optional[ICommandBuilder ]
257257 + dispatch(file_path_abs: str) Optional[ICommandBuilder]
258258}
259259
260260
261261class TShebangCommandBuildersDispatcher {
262262 # file_info_extractor: IFileInfoExtractor
263- + dispatch(file_path_abs: str) Optional[TShebangCommandBuilder]
264263}
265264
266265
267266class TGlobCommandBuildersDispatcher {
268267 # file_info_extractor: IFileInfoExtractor
269- + dispatch(file_path_abs: str) Optional[ICommandBuilder]
270268}
271269
272270
273271class TFileExtCommandBuildersDispatcher {
274272 # file_info_extractor: IFileInfoExtractor
275- + dispatch(file_path_abs: str) Optional[ICommandBuilder]
276273}
277274
278275
279276class TFileTypeCommandBuildersDispatcher {
280277 # file_info_extractor: IFileInfoExtractor
281- + dispatch(file_path_abs: str) Optional[ICommandBuilder]
282278}
283279
284280
@@ -293,7 +289,6 @@ class TInterpolatorCommandBuilder {
293289 # template_string: str
294290 # file_info_extractor: IFileInfoExtractor
295291 + TInterpolatorCommandBuilder(template_string: str, file_info_extractor: IFileInfoExtractor)
296- + build(file_path_abs: str) str
297292 # interpolate(file_path_abs: str) str
298293}
299294
@@ -310,7 +305,7 @@ class IProjectInfoExtractor {
310305 <<interface>>
311306 # file_info_extractor: IFileInfoExtractor
312307 + get_workspace_root() str
313- if the workspace is large, then it may be worth doing the operation in another thread
308+ If the workspace is large, then it may be worth doing the operation in another thread
314309 or asynchronous, which, however, will not give an increase in speed, but perhaps
315310 vim will not lag at this moment
316311 + get_all_files_filter_by_exts(exts: set[str]) Iterable[str]
0 commit comments