no message
This commit is contained in:
8
.idea/workspace.xml
generated
8
.idea/workspace.xml
generated
@@ -7,13 +7,11 @@
|
|||||||
</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/_VisualDVM/Passes/All/SPF_InsertPrivateArrayDirectives.java" afterDir="false" />
|
||||||
<change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" 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$/properties" beforeDir="false" afterPath="$PROJECT_DIR$/properties" afterDir="false" />
|
||||||
<change beforePath="$PROJECT_DIR$/src/_VisualDVM/Constants.java" beforeDir="false" afterPath="$PROJECT_DIR$/src/_VisualDVM/Constants.java" afterDir="false" />
|
<change beforePath="$PROJECT_DIR$/src/_VisualDVM/ComponentsServer/Component/Sapfor/Sapfor.java" beforeDir="false" afterPath="$PROJECT_DIR$/src/_VisualDVM/ComponentsServer/Component/Sapfor/Sapfor.java" afterDir="false" />
|
||||||
<change beforePath="$PROJECT_DIR$/src/_VisualDVM/NormalProperties.java" beforeDir="false" afterPath="$PROJECT_DIR$/src/_VisualDVM/NormalProperties.java" afterDir="false" />
|
<change beforePath="$PROJECT_DIR$/src/_VisualDVM/Passes/PassCode.java" beforeDir="false" afterPath="$PROJECT_DIR$/src/_VisualDVM/Passes/PassCode.java" afterDir="false" />
|
||||||
<change beforePath="$PROJECT_DIR$/src/_VisualDVM/Passes/All/Precompilation.java" beforeDir="false" afterPath="$PROJECT_DIR$/src/_VisualDVM/Passes/All/Precompilation.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/src/_VisualDVM/Passes/All/UpdateProperty.java" beforeDir="false" afterPath="$PROJECT_DIR$/src/_VisualDVM/Passes/All/UpdateProperty.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/src/_VisualDVM/Visual/Menus/MainMenuBar/VisualiserSettingsMenu/VisualiserSettingsMenu.java" beforeDir="false" afterPath="$PROJECT_DIR$/src/_VisualDVM/Visual/Menus/MainMenuBar/VisualiserSettingsMenu/VisualiserSettingsMenu.java" afterDir="false" />
|
|
||||||
</list>
|
</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" />
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
"ServerUserPassword": "mprit_2011",
|
"ServerUserPassword": "mprit_2011",
|
||||||
"OfferRegistrationOnStart": true,
|
"OfferRegistrationOnStart": true,
|
||||||
"Workspace": "E:\\Tests",
|
"Workspace": "E:\\Tests",
|
||||||
"ProjectsSearchDirectory": "E:\\SAPFOR\\Tests",
|
"ProjectsSearchDirectory": "E:\\Tests",
|
||||||
"DocumentsDirectory": "C:\\Users\\misha\\Documents\\_testing_system",
|
"DocumentsDirectory": "C:\\Users\\misha\\Documents\\_testing_system",
|
||||||
"VisualiserPath": "C:\\Users\\misha\\Downloads",
|
"VisualiserPath": "C:\\Users\\misha\\Downloads",
|
||||||
"Sapfor_FPath": "E:\\_sapfor_x64\\Components\\Sapfor_F",
|
"Sapfor_FPath": "E:\\_sapfor_x64\\Components\\Sapfor_F",
|
||||||
|
|||||||
@@ -71,7 +71,8 @@ public abstract class Sapfor extends OSDComponent {
|
|||||||
PassCode.SPF_PrivateShrinking,
|
PassCode.SPF_PrivateShrinking,
|
||||||
PassCode.SPF_PrivateExpansion,
|
PassCode.SPF_PrivateExpansion,
|
||||||
PassCode.SPF_PrivateRemoving,
|
PassCode.SPF_PrivateRemoving,
|
||||||
PassCode.SPF_InsertPrivateFromGUI
|
PassCode.SPF_InsertPrivateFromGUI,
|
||||||
|
PassCode.SPF_InsertPrivateArrayDirectives
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
public static PassCode[] getProceduresTransformationsCodes() {
|
public static PassCode[] getProceduresTransformationsCodes() {
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ import Common.Utils.Vector_;
|
|||||||
|
|
||||||
import java.util.Vector;
|
import java.util.Vector;
|
||||||
public class Constants {
|
public class Constants {
|
||||||
public static final int version = 1259;
|
public static final int version = 1260;
|
||||||
public static final int planner_version = 24;
|
public static final int planner_version = 24;
|
||||||
public static final int testingMaxKernels = 64;
|
public static final int testingMaxKernels = 64;
|
||||||
//--
|
//--
|
||||||
|
|||||||
@@ -0,0 +1,4 @@
|
|||||||
|
package _VisualDVM.Passes.All;
|
||||||
|
import _VisualDVM.Passes.Sapfor.SapforTransformation;
|
||||||
|
public class SPF_InsertPrivateArrayDirectives extends SapforTransformation {
|
||||||
|
}
|
||||||
@@ -301,6 +301,7 @@ public enum PassCode implements PassCode_ {
|
|||||||
//->
|
//->
|
||||||
TestPass,
|
TestPass,
|
||||||
SPF_InsertPrivateFromGUI,
|
SPF_InsertPrivateFromGUI,
|
||||||
|
SPF_InsertPrivateArrayDirectives,
|
||||||
SPF_RemoveSpfDirectives,
|
SPF_RemoveSpfDirectives,
|
||||||
SPF_RemoveDeadCode,
|
SPF_RemoveDeadCode,
|
||||||
ReplaceTestProject,
|
ReplaceTestProject,
|
||||||
@@ -366,6 +367,8 @@ public enum PassCode implements PassCode_ {
|
|||||||
@Override
|
@Override
|
||||||
public String getDescription() {
|
public String getDescription() {
|
||||||
switch (this) {
|
switch (this) {
|
||||||
|
case SPF_InsertPrivateArrayDirectives:
|
||||||
|
return "Вставка директив приватизации массивов";
|
||||||
case CompareSapforPackageToEthalon:
|
case CompareSapforPackageToEthalon:
|
||||||
return "Сравнить пакет тестирования SAPFOR с эталоном";
|
return "Сравнить пакет тестирования SAPFOR с эталоном";
|
||||||
case SPF_RemoveSpfDirectives:
|
case SPF_RemoveSpfDirectives:
|
||||||
|
|||||||
BIN
src/icons/Transformations/SPF_InsertPrivateArrayDirectives.png
Normal file
BIN
src/icons/Transformations/SPF_InsertPrivateArrayDirectives.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 502 B |
Reference in New Issue
Block a user