call method
      
void
call(
    
    
- T value
Implementation
void call(T value) {
  if (stopped) throw Exception("Add stop checker");
  currentValue = value;
  visitor!.call(this);
}void call(T value) {
  if (stopped) throw Exception("Add stop checker");
  currentValue = value;
  visitor!.call(this);
}