popValue method

dynamic popValue()

Pops a single value from the stack, returning it.

Implementation

dynamic popValue() {
  var o = at(-1);
  pop();
  return o;
}