public static string GetComment(this VBAParser.CommentContext comment) { string rawComment = comment.GetText(); string bodyOnly = rawComment.Substring(1).TrimStart(); return(bodyOnly); }
public override void ExitComment([NotNull] VBAParser.CommentContext context) { _comments.Add(context); }