wright/ast/decl/
import.rs

1//! Import declarations.
2//!
3//! These are similar to the rust `use ...;` style delcarations however with the caveat that wright currently
4//! only supports a single path in declarations, rather than a tree of items with curly braces. (we also don't support
5//! starting with a `::` prefix yet).
6
7use crate::{
8    ast::{identifier::Identifier, path::Path},
9    source_tracking::fragment::Fragment,
10};
11
12/// A `use item::from::elsewhere [as name];` declaration in a wright source file.
13#[derive(Debug)]
14pub struct ImportDecl {
15    /// The full matching source of the declaration, whitespace and all.
16    pub matching_source: Fragment,
17
18    /// The item being imported.
19    pub imported_item: Path,
20
21    /// The name it's imported as (usually [None]).
22    pub imported_as: Option<Identifier>,
23}