typeOf method

ResolvedType? typeOf(
  1. Typeable t
)

Finds the resolved type of t, or null if the type of t could not be inferred.

Implementation

ResolvedType? typeOf(Typeable t) {
  return session.typeOf(t);
}