factorio-ir 0.1.2

Intermediate representation for factorio-rs Rust-to-Lua transpilation
Documentation
1
2
3
4
5
6
7
use crate::statement::Statement;

/// A [`Block`] holds a list of [`Statements`][`Statement`]
#[derive(Debug, Clone, PartialEq)]
pub struct Block {
    pub statements: Vec<Statement>,
}