Exemplo n.º 1
0
        public override BoundNode VisitRangeVariable(BoundRangeVariable node)
        {
            // Compute the "underlying symbol" for a read of the range variable
            ParameterSymbol rangeVariableUnderlyingParameter = GetRangeVariableUnderlyingParameter(node.Value);

            NoteRead(node.RangeVariableSymbol, rangeVariableUnderlyingParameter);
            return(null);
        }
Exemplo n.º 2
0
        public override BoundNode VisitRangeVariable(BoundRangeVariable node)
        {
            if (IsInside && !RegionContains(node.RangeVariableSymbol.Locations[0].SourceSpan))
            {
                _dataFlowsIn.Add(node.RangeVariableSymbol);
            }

            return(null);
        }
Exemplo n.º 3
0
 public override BoundNode VisitRangeVariable(BoundRangeVariable node)
 {
     return(VisitExpression(node.Value));
 }
Exemplo n.º 4
0
 public override BoundNode VisitRangeVariable(BoundRangeVariable node)
 {
     return(null);
 }