getValue method

dynamic getValue(
  1. Name node
)

Implementation

dynamic getValue(Name node) {
  Scope scope = findScope(node);
  Context ctx = getContextForScope(scope);
  return ctx.getContextById(node.value);
}