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