提交 20215df2 编写于 作者: M Manish Vasani

Fix build break

上级 68057b14
......@@ -4771,6 +4771,16 @@ internal abstract partial class BaseTupleExpression : Operation, ITupleExpressio
/// Elements for tuple expression.
/// </summary>
public abstract ImmutableArray<IOperation> Elements { get; }
public override IEnumerable<IOperation> Children
{
get
{
foreach (var element in Elements)
{
yield return element;
}
}
}
public override void Accept(OperationVisitor visitor)
{
visitor.VisitTupleExpression(this);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册