WithColumn specifies the column number that the [Snippet] should point to.
(column int)
| 100 | |
| 101 | // WithColumn specifies the column number that the [Snippet] should point to. |
| 102 | func WithColumn(column int) SnippetOption { |
| 103 | return &columnOption{column: column} |
| 104 | } |
| 105 | |
| 106 | type columnOption struct { |
| 107 | column int |
no outgoing calls
searching dependent graphs…