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