pub struct FunctionStatement<'a, I: SemanticContextInstruction, E: ExtendedExpression<I>> {
pub name: FunctionName<'a>,
pub parameters: Vec<FunctionParameter<'a>>,
pub result_type: Type<'a>,
pub body: Vec<BodyStatement<'a, I, E>>,
/* private fields */
}
Expand description
FunctionStatement
it’s one of the most basic element of AST.
Basic entity of program logic. It contains function declaration and
function body.
Fields§
§name: FunctionName<'a>
Function name
parameters: Vec<FunctionParameter<'a>>
Function parameters
result_type: Type<'a>
Function result type
body: Vec<BodyStatement<'a, I, E>>
Function body
Implementations§
Source§impl<'a, I: SemanticContextInstruction, E: ExtendedExpression<I>> FunctionStatement<'a, I, E>
impl<'a, I: SemanticContextInstruction, E: ExtendedExpression<I>> FunctionStatement<'a, I, E>
pub const fn new( name: FunctionName<'a>, parameters: Vec<FunctionParameter<'a>>, result_type: Type<'a>, body: Vec<BodyStatement<'a, I, E>>, ) -> Self
Trait Implementations§
Source§impl<'a, I: Clone + SemanticContextInstruction, E: Clone + ExtendedExpression<I>> Clone for FunctionStatement<'a, I, E>
impl<'a, I: Clone + SemanticContextInstruction, E: Clone + ExtendedExpression<I>> Clone for FunctionStatement<'a, I, E>
Source§fn clone(&self) -> FunctionStatement<'a, I, E>
fn clone(&self) -> FunctionStatement<'a, I, E>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<'a, I: Debug + SemanticContextInstruction, E: Debug + ExtendedExpression<I>> Debug for FunctionStatement<'a, I, E>
impl<'a, I: Debug + SemanticContextInstruction, E: Debug + ExtendedExpression<I>> Debug for FunctionStatement<'a, I, E>
Source§impl<I: SemanticContextInstruction, E: ExtendedExpression<I>> From<FunctionStatement<'_, I, E>> for FunctionStatement
impl<I: SemanticContextInstruction, E: ExtendedExpression<I>> From<FunctionStatement<'_, I, E>> for FunctionStatement
Source§fn from(value: FunctionStatement<'_, I, E>) -> Self
fn from(value: FunctionStatement<'_, I, E>) -> Self
Converts to this type from the input type.
Source§impl<I: SemanticContextInstruction, E: ExtendedExpression<I>> GetLocation for FunctionStatement<'_, I, E>
impl<I: SemanticContextInstruction, E: ExtendedExpression<I>> GetLocation for FunctionStatement<'_, I, E>
fn location(&self) -> CodeLocation
Source§impl<I: SemanticContextInstruction, E: ExtendedExpression<I>> GetName for FunctionStatement<'_, I, E>
impl<I: SemanticContextInstruction, E: ExtendedExpression<I>> GetName for FunctionStatement<'_, I, E>
Source§impl<'a, I: PartialEq + SemanticContextInstruction, E: PartialEq + ExtendedExpression<I>> PartialEq for FunctionStatement<'a, I, E>
impl<'a, I: PartialEq + SemanticContextInstruction, E: PartialEq + ExtendedExpression<I>> PartialEq for FunctionStatement<'a, I, E>
impl<'a, I: SemanticContextInstruction, E: ExtendedExpression<I>> StructuralPartialEq for FunctionStatement<'a, I, E>
Auto Trait Implementations§
impl<'a, I, E> Freeze for FunctionStatement<'a, I, E>
impl<'a, I, E> RefUnwindSafe for FunctionStatement<'a, I, E>where
I: RefUnwindSafe,
E: RefUnwindSafe,
impl<'a, I, E> Send for FunctionStatement<'a, I, E>
impl<'a, I, E> Sync for FunctionStatement<'a, I, E>
impl<'a, I, E> Unpin for FunctionStatement<'a, I, E>where
I: Unpin,
impl<'a, I, E> UnwindSafe for FunctionStatement<'a, I, E>where
I: UnwindSafe,
E: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more