FunctionTypeMirror abstract class

A FunctionTypeMirror represents the type of a function in the Dart language.

Implements

Constructors

FunctionTypeMirror()

Properties

callMethodMethodMirror
read-only

A mirror on the call method for the reflectee.

parametersList<ParameterMirror>
read-only

Returns a list of the parameter types of the reflectee.

returnTypeTypeMirror
read-only

Returns the return type of the reflectee.

declarationsMap<Symbol, DeclarationMirror>
read-only, inherited

Returns an immutable map of the declarations actually given in the class declaration.

hashCodeint
read-only, inherited

The hash code for this object.

hasReflectedTypebool
read-only, inherited

Returns true if this mirror reflects dynamic, a non-generic class or typedef, or an instantiated generic class or typedef in the current isolate. Otherwise, returns false.

instanceMembersMap<Symbol, MethodMirror>
read-only, inherited

Returns a map of the methods, getters and setters of an instance of the class.

isAbstractbool
read-only, inherited

Is the reflectee abstract?

isEnumbool
read-only, inherited

Is the reflectee an enum?

isOriginalDeclarationbool
read-only, inherited

Is this the original declaration of this type?

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.

mixinClassMirror
read-only, inherited

The mixin of this class.

originalDeclarationTypeMirror
read-only, inherited

A mirror on the original declaration of this type.

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.

reflectedTypeType
read-only, inherited

If hasReflectedType returns true, returns the corresponding Type. Otherwise, an UnsupportedError is thrown.

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.

staticMembersMap<Symbol, MethodMirror>
read-only, inherited

Returns a map of the static methods, getters and setters of the class.

superclassClassMirror
read-only, inherited

A mirror on the superclass on the reflectee.

superinterfacesList<ClassMirror>
read-only, inherited

A list of mirrors on the superinterfaces of the reflectee.

typeArgumentsList<TypeMirror>
read-only, inherited

An immutable list with mirrors for all type arguments for this type.

typeVariablesList<TypeVariableMirror>
read-only, inherited

An immutable list with mirrors for all type variables for this type.

Operators

operator ==(other) → bool
inherited

The equality operator.

Methods

delegate(Invocation invocation) → dynamic
inherited

Performs invocation on reflectee.

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.

isAssignableTo(TypeMirror other) → bool
inherited

Checks the assignability relationship, denoted by <=> in the language specification.

isSubclassOf(ClassMirror other) → bool
inherited

Returns whether the class denoted by the receiver is a subclass of the class denoted by the argument.

isSubtypeOf(TypeMirror other) → bool
inherited

Checks the subtype relationship, denoted by <: in the language specification.

newInstance(Symbol constructorName, List positionalArguments, [ Map<Symbol, dynamic> namedArguments ]) → InstanceMirror
inherited

Invokes the named constructor 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.

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