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