Skip to main content

factorio_ir/
block.rs

1use crate::statement::Statement;
2
3/// A [`Block`] holds a list of [`Statements`][`Statement`]
4#[derive(Debug, Clone, PartialEq)]
5pub struct Block {
6    pub statements: Vec<Statement>,
7}