コード例 #1
0
ファイル: LocalRewriter.cs プロジェクト: gtkatakura/roslyn
 public override BoundNode VisitDeconstructionVariablePendingInference(DeconstructionVariablePendingInference node)
 {
     // DeconstructionVariablePendingInference nodes are only used within initial binding, but don't survive past that stage
     throw ExceptionUtilities.Unreachable;
 }
コード例 #2
0
ファイル: LocalRewriter.cs プロジェクト: qxqasdf/roslyn
 public override BoundNode VisitDeconstructionVariablePendingInference(DeconstructionVariablePendingInference node)
 {
     Fail(node);
     return(null);
 }