sway_core/language/parsed/
include_statement.rs

1use sway_types::{span::Span, Ident};
2
3use crate::language::Visibility;
4
5#[derive(Clone, Debug, PartialEq)]
6pub struct IncludeStatement {
7    // this span may be used for errors in the future, although it is not right now.
8    pub span: Span,
9    pub mod_name: Ident,
10    pub visibility: Visibility,
11}