-
Notifications
You must be signed in to change notification settings - Fork 58
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'development' into US1001575-Implementation-of-RESETBR-s…
…tatement-in-CICS
- Loading branch information
Showing
148 changed files
with
7,699 additions
and
2,726 deletions.
There are no files selected for viewing
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
clients/cobol-lsp-vscode-extension/syntaxes/CICS.tmLanguage.json
Large diffs are not rendered by default.
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
35 changes: 35 additions & 0 deletions
35
server/common/src/main/java/org/eclipse/lsp/cobol/common/model/tree/PerformUntilNode.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 |
---|---|---|
@@ -0,0 +1,35 @@ | ||
/* | ||
* Copyright (c) 2025 Broadcom. | ||
* The term "Broadcom" refers to Broadcom Inc. and/or its subsidiaries. | ||
* | ||
* This program and the accompanying materials are made | ||
* available under the terms of the Eclipse Public License 2.0 | ||
* which is available at https://www.eclipse.org/legal/epl-2.0/ | ||
* | ||
* SPDX-License-Identifier: EPL-2.0 | ||
* | ||
* Contributors: | ||
* Broadcom, Inc. - initial API and implementation | ||
* | ||
*/ | ||
package org.eclipse.lsp.cobol.common.model.tree; | ||
|
||
import lombok.EqualsAndHashCode; | ||
import lombok.Getter; | ||
import lombok.ToString; | ||
import org.eclipse.lsp.cobol.common.model.Locality; | ||
import org.eclipse.lsp.cobol.common.model.NodeType; | ||
|
||
/** The class represents perform until clause. */ | ||
@ToString(callSuper = true) | ||
@Getter | ||
@EqualsAndHashCode(callSuper = true) | ||
public class PerformUntilNode extends Node { | ||
|
||
private final boolean untilExit; | ||
|
||
public PerformUntilNode(Locality location, boolean untilExit) { | ||
super(location, NodeType.PERFORM_UNTIL_NODE); | ||
this.untilExit = untilExit; | ||
} | ||
} |
39 changes: 39 additions & 0 deletions
39
...mmon/src/main/java/org/eclipse/lsp/cobol/common/model/tree/statements/SetToStatement.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 |
---|---|---|
@@ -0,0 +1,39 @@ | ||
/* | ||
* Copyright (c) 2024 Broadcom. | ||
* The term "Broadcom" refers to Broadcom Inc. and/or its subsidiaries. | ||
* | ||
* This program and the accompanying materials are made | ||
* available under the terms of the Eclipse Public License 2.0 | ||
* which is available at https://www.eclipse.org/legal/epl-2.0/ | ||
* | ||
* SPDX-License-Identifier: EPL-2.0 | ||
* | ||
* Contributors: | ||
* Broadcom, Inc. - initial API and implementation | ||
* | ||
*/ | ||
|
||
package org.eclipse.lsp.cobol.common.model.tree.statements; | ||
|
||
import lombok.EqualsAndHashCode; | ||
import lombok.Getter; | ||
import org.eclipse.lsp.cobol.common.model.Locality; | ||
import org.eclipse.lsp.cobol.common.model.tree.Node; | ||
|
||
import java.util.List; | ||
|
||
/** This class implements the logic for SET TO statement. */ | ||
@EqualsAndHashCode(callSuper = true) | ||
@Getter | ||
public class SetToStatement extends StatementNode { | ||
boolean address; | ||
List<Node> receivingFields; | ||
Node sendingField; | ||
|
||
public SetToStatement(boolean address, Locality locality, List<Node> receivingFields, Node sendingField) { | ||
super(locality); | ||
this.address = address; | ||
this.receivingFields = receivingFields; | ||
this.sendingField = sendingField; | ||
} | ||
} |
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.