7 references to _sections
ILCompiler.ReadyToRun (7)
src\runtime\src\coreclr\tools\Common\Compiler\ObjectWriter\Wasm\WasmSections.cs (7)
15
public int Count =>
_sections
.Count;
17
public IReadOnlyList<SectionDataEmitter> Sections =>
_sections
;
19
public SectionDataEmitter this[int sectionIndex] =>
_sections
[sectionIndex];
21
public SectionDataEmitter this[string sectionName] =>
_sections
[_sectionNameToIndex[sectionName]];
26
SectionDataEmitter section =
_sections
[sectionIndex];
38
Debug.Assert(
_sections
.Count == sectionIndex);
39
_sections
.Add(section);