using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Serein.Script.Node { /// /// 类型创建 /// public class ObjectInstantiationNode : ASTNode { public string TypeName { get; } public List Arguments { get; } public ObjectInstantiationNode(string typeName, List arguments) { this.TypeName = typeName; this.Arguments = arguments; } } }