提交 07ea9825 编写于 作者: A AlekseyTs

Follow up on merge from master

上级 c5c11a54
......@@ -4166,7 +4166,7 @@ public BoundBaseReference Update(BoundTypeExpression explicitBaseReferenceOpt, T
protected override BoundExpression ShallowClone()
{
var result = new BoundBaseReference(this.Syntax, this.Type, this.HasErrors);
var result = new BoundBaseReference(this.Syntax, this.ExplicitBaseReferenceOpt, this.Type, this.HasErrors);
result.CopyAttributes(this);
return result;
}
......@@ -13077,7 +13077,7 @@ public override TreeDumperNode VisitBaseReference(BoundBaseReference node, objec
return new TreeDumperNode("baseReference", null, new TreeDumperNode[]
{
new TreeDumperNode("explicitBaseReferenceOpt", null, new TreeDumperNode[] { Visit(node.ExplicitBaseReferenceOpt, null) }),
new TreeDumperNode("type", node.Type, null)
new TreeDumperNode("type", node.Type, null),
new TreeDumperNode("isSuppressed", node.IsSuppressed, null)
}
);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册