14 writes to
Microsoft.CodeAnalysis (8)
CodeGen\BasicBlock.cs (2)
238this.builder._labelInfos[newLabel] = labelInfo.SetTargetOfConditionalBranches(); 431labelInfos[label] = info.WithNewTarget(next);
CodeGen\ILBuilder.cs (2)
534_labelInfos[label] = labelInfo.WithNewTarget(targetsTarget); 594_labelInfos[label] = labelInfo.WithNewTarget(targetsTarget);
CodeGen\ILBuilderEmit.cs (3)
149_labelInfos[label] = labelInfo.WithNewTarget(block); 167_labelInfos[label] = new LabelInfo(block, curStack, false); 296_labelInfos[label] = ld.SetTargetOfConditionalBranches();
Compilation\Compilation.cs (1)
3643_lazyMakeMemberMissingMap[member] = true;
Microsoft.CodeAnalysis.CSharp (6)
Binder\LocalBinderFactory.cs (1)
931_map[node] = binder;
Binder\LocalScopeBinder.cs (1)
139map[symbol.Name] = symbol;
FlowAnalysis\AbstractFlowPass_LocalFunctions.cs (1)
54_localFuncVarUsages[localFunc] = usages;
FlowAnalysis\EmptyStructTypeCache.cs (1)
111Cache[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)
1079map[tupleUnderlyingField.OriginalDefinition] = member;
22 references to
Microsoft.CodeAnalysis (8)
CodeGen\BasicBlock.cs (4)
202result = builder._labelInfos[BranchLabel].bb; 235var labelInfo = this.builder._labelInfos[newLabel]; 427var info = labelInfos[label]; 747branchBlocksBuilder.Add(builder._labelInfos[branchLabel].bb);
CodeGen\ILBuilder.cs (2)
507var labelInfo = _labelInfos[label]; 561var labelInfo = _labelInfos[label];
CodeGen\ILBuilderEmit.cs (1)
199Debug.Assert((code != ILOpCode.Nop) || (block == _labelInfos[label].bb));
CodeGen\LocalScopeManager.cs (1)
730Debug.Assert(builder._currentBlock == builder._labelInfos[_endLabel].bb);
Microsoft.CodeAnalysis.CSharp (4)
CodeGen\Optimizer.cs (1)
1758RecordVarRead(_dummyVariables[cookie]);
FlowAnalysis\EmptyStructTypeCache.cs (1)
110Debug.Assert(!Cache.ContainsKey(nts) || Cache[nts] == result);
Symbols\ConstraintsHelper.cs (2)
404if ((constraintKind & TypeParameterConstraintKind.AllValueTypeKinds) == 0 && isValueTypeMap[typeParameter]) 409if (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);