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