fullEval method

Value? fullEval(
  1. Context context
)

Similar to Val, but recurses into the sub-values contained by this value (if it happens to be a container, such as a list or map).

Implementation

Value? fullEval(tac.Context context) {
  return this;
}