2019-01-09 10:17:42 +03:00
|
|
|
package scanner
|
|
|
|
|
2019-01-15 09:24:33 +03:00
|
|
|
// Mode represents a scanner mode.
|
2019-01-09 10:17:42 +03:00
|
|
|
type Mode int
|
|
|
|
|
2019-01-15 09:24:33 +03:00
|
|
|
// List of scanner modes.
|
2019-01-09 10:17:42 +03:00
|
|
|
const (
|
|
|
|
ScanComments Mode = 1 << iota
|
|
|
|
DontInsertSemis
|
|
|
|
)
|