Dart API Referencedart:mirrorsIsolateMirror

IsolateMirror abstract class

An IsolateMirror reflects an isolate.

abstract class IsolateMirror implements Mirror {
  /**
   * A unique name used to refer to an isolate in debugging messages.
   */
  String get debugName;

  /**
   * Does this mirror reflect the currently running isolate?
   */
  bool get isCurrent;

  /**
   * A mirror on the root library for this isolate.
   */
  LibraryMirror get rootLibrary;
}

Implements

Mirror

Properties

final String debugName #

A unique name used to refer to an isolate in debugging messages.

String get debugName;

final bool isCurrent #

Does this mirror reflect the currently running isolate?

bool get isCurrent;

final MirrorSystem mirrors #

inherited from Mirror

The MirrorSystem that contains this mirror.

MirrorSystem get mirrors;

final LibraryMirror rootLibrary #

A mirror on the root library for this isolate.

LibraryMirror get rootLibrary;