Новый проход удаления комментариев.

v++
This commit is contained in:
2023-11-27 20:22:04 +03:00
parent 433070c15f
commit f8146f8267
7 changed files with 17 additions and 6 deletions

View File

@@ -0,0 +1,4 @@
package Visual_DVM_2021.Passes.All;
import Visual_DVM_2021.Passes.SapforTransformation;
public class SPF_RemoveComments extends SapforTransformation {
}

View File

@@ -300,12 +300,15 @@ public enum PassCode_2021 {
CreateGroupFromDirectory,
CreateTestFromDirectory,
CreateTestFromCurrentProject,
SPF_RemoveComments,
//->
TestPass;
public String getDescription() {
switch (this) {
case Undefined:
return "?";
case SPF_RemoveComments:
return "Удаление комментариев";
case CreateTestFromCurrentProject:
return "Создать тест из текущего проекта";
case CreateTestFromDirectory: