mirror of
https://gitee.com/langsisi_admin/serein-flow
synced 2026-03-02 15:50:47 +08:00
24 lines
542 B
C#
24 lines
542 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Serein.Script.Node
|
|
{
|
|
/// <summary>
|
|
/// 类型创建
|
|
/// </summary>
|
|
public class ObjectInstantiationNode : ASTNode
|
|
{
|
|
public string TypeName { get; }
|
|
public List<ASTNode> Arguments { get; }
|
|
public ObjectInstantiationNode(string typeName, List<ASTNode> arguments)
|
|
{
|
|
this.TypeName = typeName;
|
|
this.Arguments = arguments;
|
|
}
|
|
}
|
|
|
|
}
|