5 references to _sectionNameToIndex
ILCompiler.ReadyToRun (5)
src\runtime\src\coreclr\tools\Common\Compiler\ObjectWriter\Wasm\WasmSections.cs (5)
21
public SectionDataEmitter this[string sectionName] => _sections[
_sectionNameToIndex
[sectionName]];
33
return GetSection<TSection>(
_sectionNameToIndex
[sectionName]);
40
_sectionNameToIndex
.Add(sectionName, sectionIndex);
43
public bool Contains(string sectionName) =>
_sectionNameToIndex
.ContainsKey(sectionName);
45
public int GetSectionIndex(string sectionName) =>
_sectionNameToIndex
[sectionName];