using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Serein.Script.Node
{
///
/// 集合索引获取
///
public class CollectionIndexNode : ASTNode
{
///
/// 集合来源
///
public ASTNode Collection { get; }
///
/// 索引来源
///
public ASTNode Index { get; }
public CollectionIndexNode(ASTNode TargetValue,ASTNode indexValue)
{
this.Collection = TargetValue;
this.Index = indexValue;
}
}
}