getValue method

FutureOr<ASTValue> getValue(
  1. VMContext context
)

Implementation

FutureOr<ASTValue> getValue(VMContext context) {
  var variable = resolveVariable(context);
  return variable.resolveMapped((v) => v.getValue(context));
}