implemented string concatination node
Some checks failed
Build / build (push) Has been cancelled

This commit is contained in:
Ankitkumar Satapara
2026-04-22 15:33:22 +05:30
parent b2fed489e2
commit 9a9202e373
6 changed files with 129 additions and 1 deletions

View File

@@ -136,6 +136,14 @@ namespace Nodify.Calculator
assertNode.Input.Add("Actual");
assertNode.Input.Add("Expected");
var stringConcatNode = new OperationInfoViewModel()
{
Title = "String Concat",
Type = OperationType.System,
sysOp = SystemOperations.STRING_CONCAT,
IsFlowNode = false
};
systemNodes.Add(authNode);
systemNodes.Add(copynode);
systemNodes.Add(debugNode);
@@ -148,6 +156,7 @@ namespace Nodify.Calculator
systemNodes.Add(takeNode);
systemNodes.Add(forEachNode);
systemNodes.Add(assertNode);
systemNodes.Add(stringConcatNode);
return systemNodes;
}