Global.i32 constructor

Global.i32({
  1. int value = 0,
  2. bool mutable = false,
})

Creates a Global of 32-bit integer type with value.

Implementation

Global.i32({int value = 0, bool mutable = false})
    : jsObject = _Global(_descriptor('i32', mutable), value);