3 writes to _widestType
Microsoft.VisualBasic.Core (3)
Microsoft\VisualBasic\CompilerServices\ObjectFlowControl.vb (3)
214
loopFor.
_widestType
= MapTypeCodeToType(widestTypeCode)
216
loopFor.
_widestType
= widestType
283
loopFor.
_widestType
= MapTypeCodeToType(widestTypeCode)
14 references to _widestType
Microsoft.VisualBasic.Core (14)
Microsoft\VisualBasic\CompilerServices\ObjectFlowControl.vb (14)
221
loopFor._counter = ConvertLoopElement("Start", Start, startType, loopFor.
_widestType
)
222
loopFor._limit = ConvertLoopElement("Limit", Limit, limitType, loopFor.
_widestType
)
223
loopFor._stepValue = ConvertLoopElement("Step", StepValue, stepType, loopFor.
_widestType
)
227
loopFor._operatorPlus = VerifyForLoopOperator(UserDefinedOperator.Plus, loopFor._counter, loopFor.
_widestType
)
228
VerifyForLoopOperator(UserDefinedOperator.Minus, loopFor._counter, loopFor.
_widestType
)
229
loopFor._operatorLessEqual = VerifyForLoopOperator(UserDefinedOperator.LessEqual, loopFor._counter, loopFor.
_widestType
)
230
loopFor._operatorGreaterEqual = VerifyForLoopOperator(UserDefinedOperator.GreaterEqual, loopFor._counter, loopFor.
_widestType
)
273
Throw New ArgumentException(SR.Format(SR.ForLoop_CommonType2, VBFriendlyName(MapTypeCodeToType(counterTypeCode)), VBFriendlyName(loopFor.
_widestType
)))
275
Dim widestType As Type = GetWidestType(MapTypeCodeToType(counterTypeCode), loopFor.
_widestType
)
290
Counter = ConvertLoopElement("Start", Counter, Counter.GetType(), loopFor.
_widestType
)
293
loopFor._limit = ConvertLoopElement("Limit", loopFor._limit, loopFor._limit.GetType(), loopFor.
_widestType
)
294
loopFor._stepValue = ConvertLoopElement("Step", loopFor._stepValue, loopFor._stepValue.GetType(), loopFor.
_widestType
)
324
If loopFor._counter.GetType() IsNot loopFor.
_widestType
Then
325
loopFor._counter = ConvertLoopElement("Start", loopFor._counter, loopFor._counter.GetType(), loopFor.
_widestType
)