disposeArguments method

void disposeArguments()

Disposes of the arguments to the function

Implementation

void disposeArguments() {
  for (final arg in _argumentAllocations) {
    dartpyc.Py_DecRef(arg);
  }
  _argumentAllocations.clear();
}