1
0
dust/src/abstract_tree/loop.rs

15 lines
285 B
Rust
Raw Normal View History

2024-02-25 18:49:26 +00:00
use crate::{context::Context, error::RuntimeError};
use super::{AbstractTree, Block, Value};
#[derive(Clone, Debug, PartialEq)]
pub struct Loop {
block: Block,
}
impl AbstractTree for Loop {
fn run(self, _: &Context) -> Result<Value, RuntimeError> {
todo!()
}
}