using System.Collections.Generic; namespace TLang.Parser { public class CallNode : SymbolNode { public List Arguments {get;set;}=new List(); } }