142 lines
4.7 KiB
Rust
142 lines
4.7 KiB
Rust
//! Module defining script-defined functions.
|
|
#![cfg(not(feature = "no_function"))]
|
|
|
|
use super::{FnAccess, StmtBlock};
|
|
use crate::{Identifier, SmartString, StaticVec};
|
|
#[cfg(feature = "no_std")]
|
|
use std::prelude::v1::*;
|
|
use std::{fmt, hash::Hash};
|
|
|
|
/// _(internals)_ Encapsulated AST environment.
|
|
/// Exported under the `internals` feature only.
|
|
///
|
|
/// 1) other functions defined within the same AST
|
|
/// 2) the stack of imported [modules][crate::Module]
|
|
/// 3) global constants
|
|
///
|
|
/// Not available under `no_module` or `no_function`.
|
|
#[cfg(not(feature = "no_module"))]
|
|
#[cfg(not(feature = "no_function"))]
|
|
#[derive(Debug, Clone)]
|
|
pub struct EncapsulatedEnviron {
|
|
/// Functions defined within the same [`AST`][crate::AST].
|
|
pub lib: crate::Shared<crate::Module>,
|
|
/// Imported [modules][crate::Module].
|
|
pub imports: Box<[(Identifier, crate::Shared<crate::Module>)]>,
|
|
/// Globally-defined constants.
|
|
pub constants: Option<crate::eval::GlobalConstants>,
|
|
}
|
|
|
|
/// _(internals)_ A type containing information on a script-defined function.
|
|
/// Exported under the `internals` feature only.
|
|
#[derive(Debug, Clone)]
|
|
pub struct ScriptFnDef {
|
|
/// Function body.
|
|
pub body: StmtBlock,
|
|
/// Encapsulated AST environment, if any.
|
|
#[cfg(not(feature = "no_module"))]
|
|
#[cfg(not(feature = "no_function"))]
|
|
pub environ: Option<EncapsulatedEnviron>,
|
|
/// Function name.
|
|
pub name: Identifier,
|
|
/// Function access mode.
|
|
pub access: FnAccess,
|
|
/// Names of function parameters.
|
|
pub params: StaticVec<Identifier>,
|
|
/// _(metadata)_ Function doc-comments (if any).
|
|
/// Exported under the `metadata` feature only.
|
|
///
|
|
/// Doc-comments are comment lines beginning with `///` or comment blocks beginning with `/**`,
|
|
/// placed immediately before a function definition.
|
|
///
|
|
/// Block doc-comments are kept in a single string slice with line-breaks within.
|
|
///
|
|
/// Line doc-comments are kept in one string slice per line without the termination line-break.
|
|
///
|
|
/// Leading white-spaces are stripped, and each string slice always starts with the
|
|
/// corresponding doc-comment leader: `///` or `/**`.
|
|
#[cfg(feature = "metadata")]
|
|
pub comments: Box<[Box<str>]>,
|
|
}
|
|
|
|
impl fmt::Display for ScriptFnDef {
|
|
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
|
write!(
|
|
f,
|
|
"{}{}({})",
|
|
match self.access {
|
|
FnAccess::Public => "",
|
|
FnAccess::Private => "private ",
|
|
},
|
|
self.name,
|
|
self.params
|
|
.iter()
|
|
.map(SmartString::as_str)
|
|
.collect::<StaticVec<_>>()
|
|
.join(", ")
|
|
)
|
|
}
|
|
}
|
|
|
|
/// A type containing the metadata of a script-defined function.
|
|
///
|
|
/// Not available under `no_function`.
|
|
///
|
|
/// Created by [`AST::iter_functions`][super::AST::iter_functions].
|
|
#[derive(Debug, Eq, PartialEq, Ord, PartialOrd, Clone, Hash)]
|
|
#[non_exhaustive]
|
|
pub struct ScriptFnMetadata<'a> {
|
|
/// Function name.
|
|
pub name: &'a str,
|
|
/// Function parameters (if any).
|
|
pub params: Vec<&'a str>,
|
|
/// Function access mode.
|
|
pub access: FnAccess,
|
|
/// _(metadata)_ Function doc-comments (if any).
|
|
/// Exported under the `metadata` feature only.
|
|
///
|
|
/// Doc-comments are comment lines beginning with `///` or comment blocks beginning with `/**`,
|
|
/// placed immediately before a function definition.
|
|
///
|
|
/// Block doc-comments are kept in a single string slice with line-breaks within.
|
|
///
|
|
/// Line doc-comments are kept in one string slice per line without the termination line-break.
|
|
///
|
|
/// Leading white-spaces are stripped, and each string slice always starts with the
|
|
/// corresponding doc-comment leader: `///` or `/**`.
|
|
#[cfg(feature = "metadata")]
|
|
pub comments: Vec<&'a str>,
|
|
}
|
|
|
|
impl fmt::Display for ScriptFnMetadata<'_> {
|
|
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
|
write!(
|
|
f,
|
|
"{}{}({})",
|
|
match self.access {
|
|
FnAccess::Public => "",
|
|
FnAccess::Private => "private ",
|
|
},
|
|
self.name,
|
|
self.params
|
|
.iter()
|
|
.copied()
|
|
.collect::<StaticVec<_>>()
|
|
.join(", ")
|
|
)
|
|
}
|
|
}
|
|
|
|
impl<'a> From<&'a ScriptFnDef> for ScriptFnMetadata<'a> {
|
|
#[inline]
|
|
fn from(value: &'a ScriptFnDef) -> Self {
|
|
Self {
|
|
name: &value.name,
|
|
params: value.params.iter().map(SmartString::as_str).collect(),
|
|
access: value.access,
|
|
#[cfg(feature = "metadata")]
|
|
comments: value.comments.iter().map(<_>::as_ref).collect(),
|
|
}
|
|
}
|
|
}
|