tlang-runtime-compiler/TLang.Parser/FunctionCallNode.cs

12 lines
183 B
C#
Raw Normal View History

2023-07-27 03:31:32 +00:00
namespace TLang.Parser
{
public class FunctionCallNode : CallNode
{
public FunctionCallNode(string text)
{
Name = text;
}
}
}