4 references to _sectionNameToIndex
ILCompiler.ReadyToRun (4)
src\runtime\src\coreclr\tools\Common\Compiler\ObjectWriter\Wasm\WasmSections.cs (4)
20
public WasmSection this[string sectionName] => _sections[
_sectionNameToIndex
[sectionName]];
26
_sectionNameToIndex
.Add(sectionName, sectionIndex);
29
public bool Contains(string sectionName) =>
_sectionNameToIndex
.ContainsKey(sectionName);
31
public int GetSectionIndex(string sectionName) =>
_sectionNameToIndex
[sectionName];