sway_core/language/parsed/
include_statement.rs

1
2
3
4
5
6
7
8
9
10
11
use sway_types::{span::Span, Ident};

use crate::language::Visibility;

#[derive(Clone, Debug, PartialEq)]
pub struct IncludeStatement {
    // this span may be used for errors in the future, although it is not right now.
    pub span: Span,
    pub mod_name: Ident,
    pub visibility: Visibility,
}