-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Moving classes to more appropriate package
- Loading branch information
1 parent
bd0bfdd
commit 1f65dc4
Showing
117 changed files
with
215 additions
and
205 deletions.
There are no files selected for viewing
2 changes: 1 addition & 1 deletion
2
...wchart/CobolContextAugmentedTreeNode.java → ...on/ast/CobolContextAugmentedTreeNode.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...common/flowchart/CobolTreeVisualiser.java → ...mojol/common/ast/CobolTreeVisualiser.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...ojol/common/flowchart/DomainDocument.java → ...org/smojol/common/ast/DomainDocument.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package org.smojol.common.flowchart; | ||
package org.smojol.common.ast; | ||
|
||
import lombok.Getter; | ||
import lombok.Setter; | ||
|
2 changes: 1 addition & 1 deletion
2
...org/smojol/common/flowchart/FlowNode.java → .../java/org/smojol/common/ast/FlowNode.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
.../common/flowchart/FlowNodeASTVisitor.java → ...smojol/common/ast/FlowNodeASTVisitor.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package org.smojol.common.flowchart; | ||
package org.smojol.common.ast; | ||
|
||
|
||
public interface FlowNodeASTVisitor<T> { | ||
|
2 changes: 1 addition & 1 deletion
2
...l/common/flowchart/FlowNodeCondition.java → .../smojol/common/ast/FlowNodeCondition.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...jol/common/flowchart/FlowNodeService.java → ...rg/smojol/common/ast/FlowNodeService.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...smojol/common/flowchart/FlowNodeType.java → ...a/org/smojol/common/ast/FlowNodeType.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package org.smojol.common.flowchart; | ||
package org.smojol.common.ast; | ||
|
||
public enum FlowNodeType { | ||
ATOMIC, | ||
|
2 changes: 1 addition & 1 deletion
2
...jol/common/flowchart/FlowNodeVisitor.java → ...rg/smojol/common/ast/FlowNodeVisitor.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package org.smojol.common.flowchart; | ||
package org.smojol.common.ast; | ||
|
||
|
||
import java.util.List; | ||
|
2 changes: 1 addition & 1 deletion
2
...org/smojol/common/flowchart/NodeText.java → .../java/org/smojol/common/ast/NodeText.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...on/flowchart/SerialisableASTFlowNode.java → ...l/common/ast/SerialisableASTFlowNode.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package org.smojol.common.flowchart; | ||
package org.smojol.common.ast; | ||
|
||
import lombok.Getter; | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
...chart/SerialisableFlowNodeASTVisitor.java → ...n/ast/SerialisableFlowNodeASTVisitor.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...ojol/common/flowchart/SyntaxIdentity.java → ...org/smojol/common/ast/SyntaxIdentity.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...smojol/common/flowchart/VisitContext.java → ...a/org/smojol/common/ast/VisitContext.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 2 additions & 0 deletions
2
smojol-core/src/main/java/org/smojol/common/flowchart/ChartOverlay.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
package org.smojol.common.flowchart; | ||
|
||
import org.smojol.common.ast.FlowNode; | ||
|
||
public interface ChartOverlay { | ||
FlowNode block(FlowNode node); | ||
} |
3 changes: 3 additions & 0 deletions
3
smojol-core/src/main/java/org/smojol/common/flowchart/FlowchartBuilder.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 0 additions & 5 deletions
5
smojol-core/src/main/java/org/smojol/common/flowchart/NodeTransformRule.java
This file was deleted.
Oops, something went wrong.
5 changes: 0 additions & 5 deletions
5
smojol-core/src/main/java/org/smojol/common/flowchart/NodeTransformRuleApplication.java
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
smojol-core/src/main/java/org/smojol/common/vm/interpreter/AlwaysBooleanResolver.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
smojol-core/src/main/java/org/smojol/common/vm/interpreter/BooleanResolver.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
smojol-core/src/main/java/org/smojol/common/vm/interpreter/Breakpointer.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
smojol-core/src/main/java/org/smojol/common/vm/interpreter/CobolInterpreter.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
smojol-core/src/main/java/org/smojol/common/vm/interpreter/CobolStackFrame.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
smojol-core/src/main/java/org/smojol/common/vm/interpreter/ConditionResolver.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
smojol-core/src/main/java/org/smojol/common/vm/interpreter/ConsoleInputResolver.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
smojol-core/src/main/java/org/smojol/common/vm/interpreter/ExecuteAtTargetFlipCondition.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
smojol-core/src/main/java/org/smojol/common/vm/interpreter/ExecuteCondition.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
smojol-core/src/main/java/org/smojol/common/vm/interpreter/ExecutionListener.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
smojol-core/src/main/java/org/smojol/common/vm/interpreter/ExecutionListeners.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
smojol-core/src/main/java/org/smojol/common/vm/interpreter/ExpressionEvaluationResolver.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
smojol-core/src/main/java/org/smojol/common/vm/stack/ExecutionContext.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
package org.smojol.common.vm.stack; | ||
|
||
import org.smojol.common.flowchart.FlowNode; | ||
import org.smojol.common.flowchart.FlowNodeService; | ||
import org.smojol.common.ast.FlowNode; | ||
import org.smojol.common.ast.FlowNodeService; | ||
|
||
public record ExecutionContext(FlowNode node, StackFrames runtimeStackFrames, FlowNodeService nodeService) { | ||
} |
4 changes: 2 additions & 2 deletions
4
smojol-core/src/main/java/org/smojol/common/vm/stack/IStackFrame.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
smojol-core/src/main/java/org/smojol/common/vm/stack/RootStackFrame.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
smojol-core/src/main/java/org/smojol/common/vm/stack/StackFrames.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
smojol-core/src/main/java/org/smojol/common/vm/structure/CobolOperations.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
smojol-core/src/main/java/org/smojol/common/vm/structure/NoOpCobolOperation.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
smojol-toolkit/src/main/java/org/smojol/analysis/graph/graphml/TypedCodeVertex.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.