ArrayDataType is the array data type.
| 326 | |
| 327 | // ArrayDataType is the array data type. |
| 328 | type ArrayDataType struct { |
| 329 | // LB is the left bracket token node. |
| 330 | LBrack *TokenNode |
| 331 | // Len is the array length. |
| 332 | Length *TokenNode |
| 333 | // RB is the right bracket token node. |
| 334 | RBrack *TokenNode |
| 335 | // DataType is the array data type. |
| 336 | DataType DataType |
| 337 | isChild bool |
| 338 | } |
| 339 | |
| 340 | func (t *ArrayDataType) HasHeadCommentGroup() bool { |
| 341 | return t.LBrack.HasHeadCommentGroup() |
nothing calls this directly
no outgoing calls
no test coverage detected