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

12 lines
183 B
C#

namespace TLang.Parser
{
public class FunctionCallNode : CallNode
{
public FunctionCallNode(string text)
{
Name = text;
}
}
}