14 writes to
Microsoft.CodeAnalysis (8)
CodeGen\BasicBlock.cs (2)
237
this.builder._labelInfos
[
newLabel] = labelInfo.SetTargetOfConditionalBranches();
430
labelInfos
[
label] = info.WithNewTarget(next);
CodeGen\ILBuilder.cs (2)
555
_labelInfos
[
label] = labelInfo.WithNewTarget(targetsTarget);
615
_labelInfos
[
label] = labelInfo.WithNewTarget(targetsTarget);
CodeGen\ILBuilderEmit.cs (3)
141
_labelInfos
[
label] = labelInfo.WithNewTarget(block);
159
_labelInfos
[
label] = new LabelInfo(block, curStack, false);
293
_labelInfos
[
label] = ld.SetTargetOfConditionalBranches();
Compilation\Compilation.cs (1)
3763
_lazyMakeMemberMissingMap
[
member] = true;
Microsoft.CodeAnalysis.CSharp (6)
Binder\LocalBinderFactory.cs (1)
1026
_map
[
node] = binder;
Binder\LocalScopeBinder.cs (1)
142
map
[
symbol.Name] = symbol;
FlowAnalysis\AbstractFlowPass_LocalFunctions.cs (1)
54
_localFuncVarUsages
[
localFunc] = usages;
FlowAnalysis\EmptyStructTypeCache.cs (1)
106
Cache
[
nts] = result;
Symbols\Source\SourceNamedTypeSymbol.cs (1)
637
result
[
constraintTypes[i]] = i; // Use the first type among the duplicates as the source of the nullable information
Symbols\Tuples\TupleTypeSymbol.cs (1)
1072
map
[
tupleUnderlyingField.OriginalDefinition] = member;
22 references to
Microsoft.CodeAnalysis (8)
CodeGen\BasicBlock.cs (4)
201
result = builder._labelInfos
[
BranchLabel].bb;
234
var labelInfo = this.builder._labelInfos
[
newLabel];
426
var info = labelInfos
[
label];
746
branchBlocksBuilder.Add(builder._labelInfos
[
branchLabel].bb);
CodeGen\ILBuilder.cs (2)
528
var labelInfo = _labelInfos
[
label];
582
var labelInfo = _labelInfos
[
label];
CodeGen\ILBuilderEmit.cs (1)
191
Debug.Assert((code != ILOpCode.Nop) || (block == _labelInfos
[
label].bb));
CodeGen\LocalScopeManager.cs (1)
732
Debug.Assert(builder._currentBlock == builder._labelInfos
[
_endLabel].bb);
Microsoft.CodeAnalysis.CSharp (4)
CodeGen\Optimizer.cs (1)
1834
RecordVarRead(_dummyVariables
[
cookie]);
FlowAnalysis\EmptyStructTypeCache.cs (1)
105
Debug.Assert(!Cache.ContainsKey(nts) || Cache
[
nts] == result);
Symbols\ConstraintsHelper.cs (2)
433
if ((constraintKind & TypeParameterConstraintKind.AllValueTypeKinds) == 0 && isValueTypeMap
[
typeParameter])
438
if (isReferenceTypeFromConstraintTypesMap
[
typeParameter])
Microsoft.CodeAnalysis.UnitTests (10)
Collections\SmallDictionaryTests.cs (10)
86
Assert.Equal(ht
[
i], i);
87
Assert.Equal(ht
[
i - 2], i - 2);
88
Assert.Equal(ht
[
i - 3], i - 3);
89
Assert.Equal(ht
[
i - 4], i - 4);
90
Assert.Equal(ht
[
i - 6], i - 6);
91
Assert.Equal(ht
[
i - 5], i - 5);
92
Assert.Equal(ht
[
i - 1], i - 1);
93
Assert.Equal(ht
[
i - 7], i - 7);
94
Assert.Equal(ht
[
i - 8], i - 8);
95
Assert.Equal(ht
[
i - 9], i - 9);