public override BoundNode VisitLabel(BoundLabel node)
 {
     // we are removing the label expressions from the bound tree because this expression is no longer needed
     // for the emit phase. It is even doing harm to e.g. the stack depth calculation because because this expression
     // would not need to be pushed to the stack.
     return null;
 }
示例#2
0
 public override BoundNode VisitLabel(BoundLabel node)
 {
     ResolveLabel(node, node.Label);
     return base.VisitLabel(node);
 }
示例#3
0
 public override BoundNode VisitLabel(BoundLabel node)
 {
     ResolveLabel(node, node.Label);
     return(base.VisitLabel(node));
 }