Expressions, or parts thereof, are resolved in a context. If the
context is empty, a set of possible types is returned; if the context is
not empty, those types in the context are returned which the expression
can match. For example, the expression 'a'
will return
{byte
} given an empty context; in the context {State
,
float
, int
, short
} it will return {int
,
short
}.
Go to the first, previous, next, last section, table of contents.