12 lines
183 B
C#
12 lines
183 B
C#
|
namespace TLang.Parser
|
||
|
{
|
||
|
public class FunctionCallNode : CallNode
|
||
|
{
|
||
|
|
||
|
|
||
|
public FunctionCallNode(string text)
|
||
|
{
|
||
|
Name = text;
|
||
|
}
|
||
|
}
|
||
|
}
|