loadStdLib method

void loadStdLib()

Implementation

void loadStdLib() {
  if (!hasListener(DictionaryListener)) {
    throw StateError(
        "Cannot Load StdLib without a storage mechanism"); // This may not be ideal, we don't care how storage is implemented as long as it is... Do we need a capabilities interface?
  }
  _stdlib.forEach((key, value) {
    this[key] = value;
  });
}