CommentStmt represents a comment statement.
| 44 | |
| 45 | // CommentStmt represents a comment statement. |
| 46 | type CommentStmt struct { |
| 47 | // Comment is the comment token. |
| 48 | Comment token.Token |
| 49 | } |
| 50 | |
| 51 | func (c *CommentStmt) HasHeadCommentGroup() bool { |
| 52 | return false |
nothing calls this directly
no outgoing calls
no test coverage detected