6 references to _sections
ILCompiler.ReadyToRun (6)
src\runtime\src\coreclr\tools\Common\Compiler\ObjectWriter\Wasm\WasmSections.cs (6)
14
public int Count =>
_sections
.Count;
16
public IReadOnlyList<WasmSection> Sections =>
_sections
;
18
public WasmSection this[int sectionIndex] =>
_sections
[sectionIndex];
20
public WasmSection this[string sectionName] =>
_sections
[_sectionNameToIndex[sectionName]];
24
Debug.Assert(
_sections
.Count == sectionIndex);
25
_sections
.Add(section);