новый проход
This commit is contained in:
9
.idea/workspace.xml
generated
9
.idea/workspace.xml
generated
@@ -6,7 +6,14 @@
|
|||||||
</artifacts-to-build>
|
</artifacts-to-build>
|
||||||
</component>
|
</component>
|
||||||
<component name="ChangeListManager">
|
<component name="ChangeListManager">
|
||||||
<list default="true" id="e42177c3-2328-4b27-8a01-35779b2beb99" name="Default Changelist" comment="" />
|
<list default="true" id="e42177c3-2328-4b27-8a01-35779b2beb99" name="Default Changelist" comment="">
|
||||||
|
<change afterPath="$PROJECT_DIR$/src/Visual_DVM_2021/Passes/All/SPF_InsertImplicitNone.java" afterDir="false" />
|
||||||
|
<change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
|
||||||
|
<change beforePath="$PROJECT_DIR$/properties" beforeDir="false" afterPath="$PROJECT_DIR$/properties" afterDir="false" />
|
||||||
|
<change beforePath="$PROJECT_DIR$/src/Common/UI/Menus_2023/MainMenuBar/TransformationsMenu.java" beforeDir="false" afterPath="$PROJECT_DIR$/src/Common/UI/Menus_2023/MainMenuBar/TransformationsMenu.java" afterDir="false" />
|
||||||
|
<change beforePath="$PROJECT_DIR$/src/Repository/Component/Sapfor/Sapfor.java" beforeDir="false" afterPath="$PROJECT_DIR$/src/Repository/Component/Sapfor/Sapfor.java" afterDir="false" />
|
||||||
|
<change beforePath="$PROJECT_DIR$/src/Visual_DVM_2021/Passes/PassCode_2021.java" beforeDir="false" afterPath="$PROJECT_DIR$/src/Visual_DVM_2021/Passes/PassCode_2021.java" afterDir="false" />
|
||||||
|
</list>
|
||||||
<option name="SHOW_DIALOG" value="false" />
|
<option name="SHOW_DIALOG" value="false" />
|
||||||
<option name="HIGHLIGHT_CONFLICTS" value="true" />
|
<option name="HIGHLIGHT_CONFLICTS" value="true" />
|
||||||
<option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
|
<option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
|
||||||
|
|||||||
@@ -10,7 +10,7 @@
|
|||||||
"SMTPHost": "smtp.mail.ru",
|
"SMTPHost": "smtp.mail.ru",
|
||||||
"SMTPPort": 465,
|
"SMTPPort": 465,
|
||||||
"MailSocketPort": 465,
|
"MailSocketPort": 465,
|
||||||
"collapseCredentials": false,
|
"collapseCredentials": true,
|
||||||
"collapseFileGraphs": true,
|
"collapseFileGraphs": true,
|
||||||
"collapseFileMessages": true,
|
"collapseFileMessages": true,
|
||||||
"collapseProjectTrees": true,
|
"collapseProjectTrees": true,
|
||||||
@@ -35,7 +35,7 @@
|
|||||||
"PerformanceAnalyzerPath": "",
|
"PerformanceAnalyzerPath": "",
|
||||||
"ComponentsBackUpsCount": 10,
|
"ComponentsBackUpsCount": 10,
|
||||||
"TestingKernels": 16,
|
"TestingKernels": 16,
|
||||||
"AutoCheckTesting": true,
|
"AutoCheckTesting": false,
|
||||||
"CheckTestingIntervalSeconds": 10,
|
"CheckTestingIntervalSeconds": 10,
|
||||||
"EmailOnTestingProgress": false,
|
"EmailOnTestingProgress": false,
|
||||||
"eraseTestingWorkspaces": true
|
"eraseTestingWorkspaces": true
|
||||||
|
|||||||
@@ -10,7 +10,7 @@ public class TransformationsMenu extends VisualiserMenu {
|
|||||||
add(new PassesSubMenu("Циклы", "/icons/Menu/Loops.png",
|
add(new PassesSubMenu("Циклы", "/icons/Menu/Loops.png",
|
||||||
Sapfor.getLoopsTransformationsCodes()));
|
Sapfor.getLoopsTransformationsCodes()));
|
||||||
addSeparator();
|
addSeparator();
|
||||||
add(new PassesSubMenu("Приватные переменные", "/icons/Menu/Privates.png",
|
add(new PassesSubMenu("Вставка директив приватизации", "/icons/Menu/Privates.png",
|
||||||
Sapfor.getPrivatesTransformationsCodes()));
|
Sapfor.getPrivatesTransformationsCodes()));
|
||||||
addSeparator();
|
addSeparator();
|
||||||
add(new PassesSubMenu("Процедуры", "/icons/Menu/Functions.png",
|
add(new PassesSubMenu("Процедуры", "/icons/Menu/Functions.png",
|
||||||
|
|||||||
@@ -123,7 +123,8 @@ public abstract class Sapfor extends OSDComponent {
|
|||||||
PassCode_2021.CopyProject,
|
PassCode_2021.CopyProject,
|
||||||
PassCode_2021.PrepareForModulesAssembly,
|
PassCode_2021.PrepareForModulesAssembly,
|
||||||
PassCode_2021.DVMConvertProject,
|
PassCode_2021.DVMConvertProject,
|
||||||
PassCode_2021.SPF_ResolveCommonBlockConflicts
|
PassCode_2021.SPF_ResolveCommonBlockConflicts,
|
||||||
|
PassCode_2021.SPF_InsertImplicitNone
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
//<editor-fold desc="компонент">
|
//<editor-fold desc="компонент">
|
||||||
@@ -395,6 +396,7 @@ public abstract class Sapfor extends OSDComponent {
|
|||||||
//-
|
//-
|
||||||
res.add(PassCode_2021.SPF_InsertDvmhRegions);
|
res.add(PassCode_2021.SPF_InsertDvmhRegions);
|
||||||
res.add(PassCode_2021.SPF_SharedMemoryParallelization);
|
res.add(PassCode_2021.SPF_SharedMemoryParallelization);
|
||||||
|
res.add(PassCode_2021.SPF_InsertImplicitNone);
|
||||||
res.add(PassCode_2021.CreateParallelVariants);
|
res.add(PassCode_2021.CreateParallelVariants);
|
||||||
// res.add(PassCode_2021.SPF_InlineProceduresH);
|
// res.add(PassCode_2021.SPF_InlineProceduresH);
|
||||||
// res.add(PassCode_2021.SPF_InlineProcedures);
|
// res.add(PassCode_2021.SPF_InlineProcedures);
|
||||||
|
|||||||
@@ -0,0 +1,4 @@
|
|||||||
|
package Visual_DVM_2021.Passes.All;
|
||||||
|
import Visual_DVM_2021.Passes.SapforTransformation;
|
||||||
|
public class SPF_InsertImplicitNone extends SapforTransformation {
|
||||||
|
}
|
||||||
@@ -326,11 +326,14 @@ public enum PassCode_2021 {
|
|||||||
PingTestingServer,
|
PingTestingServer,
|
||||||
ShutdownTestingServer,
|
ShutdownTestingServer,
|
||||||
StartTestingServer,
|
StartTestingServer,
|
||||||
|
SPF_InsertImplicitNone,
|
||||||
;
|
;
|
||||||
public String getDescription() {
|
public String getDescription() {
|
||||||
switch (this) {
|
switch (this) {
|
||||||
case Undefined:
|
case Undefined:
|
||||||
return "?";
|
return "?";
|
||||||
|
case SPF_InsertImplicitNone:
|
||||||
|
return "Вставка оператора Implicit NONE";
|
||||||
case PingTestingServer:
|
case PingTestingServer:
|
||||||
return "Проверить активность тестового сервера";
|
return "Проверить активность тестового сервера";
|
||||||
case StartTestingServer:
|
case StartTestingServer:
|
||||||
|
|||||||
Reference in New Issue
Block a user