W3cubDocs

/Dart 2

LibraryMirror class

A LibraryMirror reflects a Dart language library, providing access to the variables, functions, and classes of the library.

Implements

Constructors

LibraryMirror()

Properties

declarationsMap<Symbol, DeclarationMirror>
read-only
Returns an immutable map of the declarations actually given in the library. [...]
libraryDependenciesList<LibraryDependencyMirror>
read-only
Returns a list of the imports and exports in this library;
uriUri
read-only
The absolute uri of the library.
hashCodeint
read-only, inherited
The hash code for this object. [...]
isPrivatebool
read-only, inherited
Whether this declaration is library private. [...]
isTopLevelbool
read-only, inherited
Whether this declaration is top-level. [...]
locationSourceLocation
read-only, inherited
The source location of this Dart language entity, or null if the entity is synthetic. [...]
metadataList<InstanceMirror>
read-only, inherited
A list of the metadata associated with this declaration. [...]
ownerDeclarationMirror
read-only, inherited
A mirror on the owner of this Dart language entity. [...]
qualifiedNameSymbol
read-only, inherited
The fully-qualified name for this Dart language entity. [...]
runtimeTypeType
read-only, inherited
A representation of the runtime type of the object.
simpleNameSymbol
read-only, inherited
The simple name for this Dart language entity. [...]

Methods

delegate(Invocation invocation) → dynamic
inherited
Performs invocation on the reflectee of this ObjectMirror. [...]
getField(Symbol fieldName) → InstanceMirror
inherited
Invokes a getter and returns a mirror on the result. [...]
invoke(Symbol memberName, List positionalArguments, [ Map<Symbol, dynamic> namedArguments ]) → InstanceMirror
inherited
Invokes the named function and returns a mirror on the result. [...]
noSuchMethod(Invocation invocation) → dynamic
inherited
Invoked when a non-existent method or property is accessed. [...]
setField(Symbol fieldName, Object value) → InstanceMirror
inherited
Invokes a setter and returns a mirror on the result. [...]
toString() → String
inherited
Returns a string representation of this object.

Operators

operator ==(dynamic other) → bool
Whether this mirror is equal to other. [...]

© 2012 the Dart project authors
Licensed under the Creative Commons Attribution-ShareAlike License v4.0.
https://api.dartlang.org/stable/2.0.0/dart-mirrors/LibraryMirror-class.html