예제 #1
0
 public override BoundNode VisitPointerIndirectionOperator(BoundPointerIndirectionOperator node)
 {
     NoteUnsafe(node);
     return(base.VisitPointerIndirectionOperator(node));
 }
예제 #2
0
 private static BoundExpression VisitPointerIndirectionOperator(BoundPointerIndirectionOperator node)
 {
     // error should have been reported earlier
     // Diagnostics.Add(ErrorCode.ERR_ExpressionTreeContainsPointerOp, node.Syntax.Location);
     return(new BoundBadExpression(node.Syntax, default(LookupResultKind), ImmutableArray <Symbol> .Empty, ImmutableArray.Create <BoundExpression>(node), node.Type));
 }