sway-core 0.37.3

Sway core language.
Documentation
1
2
3
4
5
6
7
use sway_types::Ident;

/// The name used within a module to refer to one of its submodules.
///
/// If an alias was given to the `mod`, this will be the alias. If not, this is the submodule's
/// library name.
pub type ModName = Ident;