visitWhileStatement method
Implementation
@override
T? visitWhileStatement(WhileStatement node) {
stopwatch.start();
T? result = _baseVisitor.visitWhileStatement(node);
stopwatch.stop();
return result;
}
@override
T? visitWhileStatement(WhileStatement node) {
stopwatch.start();
T? result = _baseVisitor.visitWhileStatement(node);
stopwatch.stop();
return result;
}