wasm/core/structure/modules/
globals.rs

1use crate::{core::decoding::reader::span::Span, GlobalType};
2
3#[derive(Debug, Copy, Clone)]
4pub struct Global {
5    pub ty: GlobalType,
6    pub init_expr: Span,
7}