HTType class abstract
Type is basically a set of things. It is used to check errors in code.
- Mixed-in types
- Implementers
Properties
Methods
-
contains(
String varName) → bool -
inherited
-
isA(
HTType? other) → bool - Check wether value of this HTType can be assigned to other HTType.
-
isNotA(
HTType? other) → bool - Wether object of this HTType cannot be assigned to other HTType
-
memberGet(
String varName, {String? from}) → dynamic -
Fetch a member by the
varName
, in the form ofinherited -
memberSet(
String varName, dynamic varValue, {String? from}) → void -
Assign a value to a member by the
varName
, in the form ofinherited -
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
resolve(
HTDeclarationNamespace namespace) → HTType -
subGet(
dynamic varName, {String? from}) → dynamic -
Fetch a member by the
varName
, in the form ofinherited -
subSet(
dynamic varName, dynamic varValue, {String? from}) → void -
Assign a value to a member by the
varName
, in the form ofinherited -
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
override