addLocal method

void addLocal(
  1. String name,
  2. Expression e, [
  3. OutputType? type
])

Implementation

void addLocal(String name, o.Expression e, [o.OutputType? type]) {
  _state.locals[name] = e;
  _state.localTypes[name] = type;
}