SyntaxStmt represents a syntax statement.
| 4 | |
| 5 | // SyntaxStmt represents a syntax statement. |
| 6 | type SyntaxStmt struct { |
| 7 | // Syntax is the syntax token. |
| 8 | Syntax *TokenNode |
| 9 | // Assign is the assign token. |
| 10 | Assign *TokenNode |
| 11 | // Value is the syntax value. |
| 12 | Value *TokenNode |
| 13 | } |
| 14 | |
| 15 | func (s *SyntaxStmt) HasHeadCommentGroup() bool { |
| 16 | return s.Syntax.HasHeadCommentGroup() |
nothing calls this directly
no outgoing calls
no test coverage detected