dart:mirrors
ClosureMirror class
A ClosureMirror reflects a closure.
A ClosureMirror provides the ability to execute its reflectee and introspect its function.
- Implemented types
-
Constructors
- ClosureMirror()
Properties
- function → MethodMirror
read-only
- A mirror on the function associated with this closure.
- hashCode → int
read-only, inherited
- The hash code for this object.
- hasReflectee → bool
read-only, inherited
- Whether reflectee will return the instance reflected by this mirror.
- reflectee → dynamic
read-only, inherited
- If the InstanceMirror reflects an instance it is meaningful to have a local reference to, we provide access to the actual instance here.
- runtimeType → Type
read-only, inherited
- A representation of the runtime type of the object.
- type → ClassMirror
read-only, inherited
- A mirror on the type of the reflectee.
Methods
- apply(List positionalArguments, [Map<Symbol, dynamic> namedArguments = const <Symbol, dynamic>{}]) → InstanceMirror
- Executes the closure and returns a mirror on the result.
- 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 = const <Symbol, dynamic>{}]) → 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, dynamic value) → InstanceMirror
inherited
- Invokes a setter and returns a mirror on the result.
- toString() → String
inherited
- A string representation of this object.
Operators
- operator ==(Object other) → bool
inherited
- The equality operator.