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