A TypedefMirror represents a typedef in a Dart language program.
- Implements
Properties
- bool hasReflectedType
-
read-only, inheritedReturns 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.
- bool isOriginalDeclaration
-
read-only, inheritedIs this the original declaration of this type?
- bool isPrivate
-
read-only, inheritedReturns
true
if this declaration is considered private according to the Dart language specification. Always returnsfalse
if this declaration is a library. Otherwise returnfalse
. - bool isTopLevel
-
read-only, inheritedIs this declaration top-level?
- SourceLocation location
-
read-only, inheritedThe source location of this Dart language entity, or
null
if the entity is synthetic. - List<InstanceMirror> metadata
-
read-only, inheritedA list of the metadata associated with this declaration.
- TypeMirror originalDeclaration
-
read-only, inheritedA mirror on the original declaration of this type.
- DeclarationMirror owner
-
read-only, inheritedA mirror on the owner of this Dart language entity. This is the declaration immediately surrounding the reflectee.
- Symbol qualifiedName
-
read-only, inheritedThe fully-qualified name for this Dart language entity.
- FunctionTypeMirror referent
-
read-onlyThe 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 methodcall
whose signature corresponds to F. - Type reflectedType
-
read-only, inheritedIf
hasReflectedType
returns true, returns the correspondingType
. Otherwise, anUnsupportedError
is thrown. - Symbol simpleName
-
read-only, inheritedThe simple name for this Dart language entity.
- List<TypeMirror> typeArguments
-
read-only, inheritedAn immutable list with mirrors for all type arguments for this type.
- List<TypeVariableMirror> typeVariables
-
read-only, inheritedAn immutable list with mirrors for all type variables for this type.
Constructors
Methods
-
isAssignableTo(
TypeMirror other) → bool -
inheritedChecks the assignability relationship, denoted by
<=>
in the language specification. This is the type relationship tested on assignment in checked mode. -
isSubtypeOf(
TypeMirror other) → bool -
inheritedChecks the subtype relationship, denoted by
<:
in the language specification. This is the type relationship used inis
test checks.