class
FunctionTypeMirror

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

Implements

Properties

TypeMirror returnType
read-only
Returns the return type of the reflectee.
List<ParameterMirror> parameters
read-only
Returns a list of the parameter types of the reflectee.
MethodMirror callMethod
read-only
A mirror on the call method for the reflectee.
Type reflectedType
read-only , inherited
If hasReflectedType returns true, returns the corresponding [Type]. Otherwise, an [UnsupportedError] is thrown.
Map<Symbol,DeclarationMirror> declarations
read-only , inherited
Returns an immutable map of the declarations actually given in the class declaration.
List<TypeVariableMirror> typeVariables
read-only , inherited
An immutable list with mirrors for all type variables for this type.
TypeMirror originalDeclaration
read-only , inherited
A mirror on the original declaration of this type.
ClassMirror mixin
read-only , inherited
The mixin of this class. If this class is the result of a mixin application of the form S with M, returns a class mirror on M. Otherwise returns a class mirror on [reflectee].
List<InstanceMirror> metadata
read-only , inherited
A list of the metadata associated with this declaration.
SourceLocation location
read-only , inherited
The source location of this Dart language entity, or null if the entity is synthetic.
bool isPrivate
read-only , inherited
Returns true if this declaration is considered private according to the Dart language specification. Always returns false if this declaration is a library. Otherwise return false.
bool isAbstract
read-only , inherited
Is the reflectee abstract?
bool hasReflectedType
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.
List<ClassMirror> superinterfaces
read-only , inherited
A list of mirrors on the superinterfaces of the reflectee.
Symbol qualifiedName
read-only , inherited
The fully-qualified name for this Dart language entity.
Map<Symbol,MethodMirror> staticMembers
read-only , inherited
Returns a map of the static methods, getters and setters of the class.
bool isEnum
read-only , inherited
Is the reflectee an enum?
Symbol simpleName
read-only , inherited
The simple name for this Dart language entity.
ClassMirror superclass
read-only , inherited
A mirror on the superclass on the reflectee.
bool isTopLevel
read-only , inherited
Is this declaration top-level?
DeclarationMirror owner
read-only , inherited
A mirror on the owner of this Dart language entity. This is the declaration immediately surrounding the reflectee.
List<TypeMirror> typeArguments
read-only , inherited
An immutable list with mirrors for all type arguments for this type.
Map<Symbol,MethodMirror> instanceMembers
read-only , inherited
Returns a map of the methods, getters and setters of an instance of the class.
bool isOriginalDeclaration
read-only , inherited
Is this the original declaration of this type?

Constructors

FunctionTypeMirror()

Methods

isSubclassOf(ClassMirror other) → bool
inherited
Returns whether the class denoted by the receiver is a subclass of the class denoted by the argument.
isAssignableTo(TypeMirror other) → bool
inherited
Checks the assignability relationship, denoted by <=> in the language specification. This is the type relationship tested on assignment in checked mode.
getField(Symbol fieldName) → InstanceMirror
inherited
Invokes a getter and returns a mirror on the result. The getter can be the implicit getter for a field or a user-defined getter method.
setField(Symbol fieldName, Object value) → InstanceMirror
inherited
Invokes a setter and returns a mirror on the result. The setter may be either the implicit setter for a non-final field or a user-defined setter method.
invoke(Symbol memberName, List positionalArguments, [Map<Symbol> namedArguments]) → InstanceMirror
inherited
Invokes the named function and returns a mirror on the result.
isSubtypeOf(TypeMirror other) → bool
inherited
Checks the subtype relationship, denoted by <: in the language specification. This is the type relationship used in is test checks.
newInstance(Symbol constructorName, List positionalArguments, [Map<Symbol> namedArguments]) → InstanceMirror
inherited
Invokes the named constructor and returns a mirror on the result.