diff --git a/assembler/src/source/source_info.rs b/assembler/src/source/source_info.rs index 30079a7..0071bf0 100644 --- a/assembler/src/source/source_info.rs +++ b/assembler/src/source/source_info.rs @@ -22,6 +22,7 @@ use crate::{ pub struct SourceInfo { /// The line number within the source file underpinned by `module_id`. pub line_number: usize, + /// The [`Module`] the source code is associated with. pub module: Arc, /// The indexes where this token may be found (line-local). pub span: std::ops::Range,