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 TargetValue { get; } public ASTNode IndexValue { get; } public CollectionIndexNode(ASTNode collectionValue,ASTNode indexValue) { this.TargetValue = collectionValue; this.IndexValue = indexValue; } } }