visitDotShorthandNameExpression method

  1. @experimental
  2. @override
T? visitDotShorthandNameExpression(
  1. DotShorthandNameExpression node
)
override

Implementation

@experimental
@override
T? visitDotShorthandNameExpression(DotShorthandNameExpression node) {
  stopwatch.start();
  T? result = _baseVisitor.visitDotShorthandNameExpression(node);
  stopwatch.stop();
  return result;
}