configureForRuntime static method

void configureForRuntime(
  1. Runtime runtime
)

Configure the $Iterable wrapper for use in a Runtime

Implementation

static void configureForRuntime(Runtime runtime) {
  runtime.registerBridgeFunc(
      'dart:core', 'Iterable.generate', _$Iterable_generate.call);
}