Ejemplo 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);
        }
Ejemplo n.º 2
0
        public override BoundNode VisitRangeVariable(BoundRangeVariable node)
        {
            if (IsInside && !RegionContains(node.RangeVariableSymbol.Locations[0].SourceSpan))
            {
                _dataFlowsIn.Add(node.RangeVariableSymbol);
            }

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

            return null;
        }
 public override BoundNode VisitRangeVariable(BoundRangeVariable node)
 {
     return(null);
 }
Ejemplo n.º 5
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;
 }
Ejemplo n.º 6
0
 public override BoundNode VisitRangeVariable(BoundRangeVariable node)
 {
     NoteRead(node.RangeVariableSymbol);
     return null;
 }
Ejemplo n.º 7
0
 public override BoundNode VisitRangeVariable(BoundRangeVariable node)
 {
     return VisitExpression(node.Value);
 }
Ejemplo n.º 8
0
 public override BoundNode VisitRangeVariable(BoundRangeVariable node)
 {
     NoteRead(node.RangeVariableSymbol);
     return(null);
 }
Ejemplo n.º 9
0
 public override BoundNode VisitRangeVariable(BoundRangeVariable node)
 {
     return(VisitExpression(node.Value));
 }