lookup method

Object? lookup(
  1. String variableName
)

Lookup the value of a variable in the current context.

Implementation

Object? lookup(String variableName) {
  _checkClosed();
  return _renderer.resolveValue(variableName);
}