class
TypedefMirror

A TypedefMirror represents a typedef in a Dart language program.

Implements

Properties

FunctionTypeMirror referent
read-only
The defining type for this typedef. If the the type referred to by the reflectee is a function type F, the result will be FunctionTypeMirror reflecting F which is abstract and has an abstract method call whose signature corresponds to F.
Type reflectedType
read-only , inherited
If hasReflectedType returns true, returns the corresponding [Type]. Otherwise, an [UnsupportedError] is thrown.
TypeMirror originalDeclaration
read-only , inherited
A mirror on the original declaration of this type.
List<TypeVariableMirror> typeVariables
read-only , inherited
An immutable list with mirrors for all type variables for this type.
Symbol simpleName
read-only , inherited
The simple name for this Dart language entity.
List<InstanceMirror> metadata
read-only , inherited
A list of the metadata associated with this declaration.
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.
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 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<TypeMirror> typeArguments
read-only , inherited
An immutable list with mirrors for all type arguments for this type.
bool isOriginalDeclaration
read-only , inherited
Is this the original declaration of this type?
Symbol qualifiedName
read-only , inherited
The fully-qualified name for this Dart language entity.

Constructors

TypedefMirror()

Methods

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.
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.