visitExpressionStatement method
Loads string comments.
Implementation
@override
visitExpressionStatement(ExpressionStatement node) {
if (settings.tag == null) return super.visitExpressionStatement(node);
// Load all comments before the statement.
_currentComments.addAll(_formatComments(_getComments(node.beginToken)));
// Process the statement.
super.visitExpressionStatement(node);
// Clear the comments.
_currentComments.clear();
}