using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Serein.Script.Node
{
///
/// 数组定义节点
/// arr = [1, 2, 3, 4, 5];
/// arr = ["A","B","C"];
///
internal class ArrayDefintionNode : ASTNode
{
///
/// 数组子项
///
public List Elements { get; } = new List();
public ArrayDefintionNode(List elements)
{
Elements = elements;
}
}
}