1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127
// Copyright (C) 2019-2023 Aleo Systems Inc.
// This file is part of the Leo library.
// The Leo library is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
// The Leo library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
// You should have received a copy of the GNU General Public License
// along with the Leo library. If not, see <https://www.gnu.org/licenses/>.
pub mod assert;
pub use assert::*;
pub mod assign;
pub use assign::*;
pub mod block;
pub use block::*;
pub mod conditional;
pub use conditional::*;
pub mod console;
pub use console::*;
pub mod definition;
pub use definition::*;
pub mod expression;
pub use expression::*;
pub mod iteration;
pub use iteration::*;
pub mod return_;
pub use return_::*;
use crate::Node;
use leo_span::Span;
use serde::{Deserialize, Serialize};
use std::fmt;
/// Program statement that defines some action (or expression) to be carried out.
#[derive(Clone, PartialEq, Eq, Serialize, Deserialize, Debug)]
pub enum Statement {
/// An assert statement.
Assert(AssertStatement),
/// An assignment statement.
Assign(Box<AssignStatement>),
/// A block statement.
Block(Block),
/// An `if` statement.
Conditional(ConditionalStatement),
/// A console logging statement.
Console(ConsoleStatement),
/// A binding or set of bindings / variables to declare.
Definition(DefinitionStatement),
/// An expression statement
Expression(ExpressionStatement),
/// A `for` statement.
Iteration(Box<IterationStatement>),
/// A return statement `return expr;`.
Return(ReturnStatement),
}
impl Statement {
/// Returns a dummy statement made from an empty block `{}`.
pub fn dummy(span: Span) -> Self {
Self::Block(Block { statements: Vec::new(), span })
}
}
impl fmt::Display for Statement {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
match self {
Statement::Assert(x) => x.fmt(f),
Statement::Assign(x) => x.fmt(f),
Statement::Block(x) => x.fmt(f),
Statement::Conditional(x) => x.fmt(f),
Statement::Console(x) => x.fmt(f),
Statement::Definition(x) => x.fmt(f),
Statement::Expression(x) => x.fmt(f),
Statement::Iteration(x) => x.fmt(f),
Statement::Return(x) => x.fmt(f),
}
}
}
impl Node for Statement {
fn span(&self) -> Span {
use Statement::*;
match self {
Assert(n) => n.span(),
Assign(n) => n.span(),
Block(n) => n.span(),
Conditional(n) => n.span(),
Console(n) => n.span(),
Definition(n) => n.span(),
Expression(n) => n.span(),
Iteration(n) => n.span(),
Return(n) => n.span(),
}
}
fn set_span(&mut self, span: Span) {
use Statement::*;
match self {
Assert(n) => n.set_span(span),
Assign(n) => n.set_span(span),
Block(n) => n.set_span(span),
Conditional(n) => n.set_span(span),
Console(n) => n.set_span(span),
Definition(n) => n.set_span(span),
Expression(n) => n.set_span(span),
Iteration(n) => n.set_span(span),
Return(n) => n.set_span(span),
}
}
}