allocateLocals method

Map<String, String> allocateLocals(
  1. Iterable<String> names
)

Implementation

Map<String, String> allocateLocals(Iterable<String> names) {
  final result = <String, String>{};
  for (final name in names) {
    result[name] = allocateLocal(name);
  }

  return result;
}