Skip to main content

vihaco_parser_core/container/
parsed_file.rs

1// SPDX-FileCopyrightText: 2026 The vihaco Authors
2// SPDX-License-Identifier: MIT
3
4use std::ops::Range;
5
6use super::section::SectionNode;
7
8#[derive(Debug, Clone, PartialEq, Eq)]
9pub struct ParsedFile {
10    pub context: Range<usize>,
11    pub root: SectionNode,
12}