8 lines
90 B
Go
8 lines
90 B
Go
package scanner
|
|
|
|
type Mode int
|
|
|
|
const (
|
|
ScanComments Mode = 1 << iota
|
|
DontInsertSemis
|
|
)
|